Slackbot
10/06/2022, 12:10 PMHemanth Sai Veluvolu
10/06/2022, 3:41 PMmatchingFallbacks = ["debug"]
in your app staging buildtype. https://developer.android.com/reference/tools/gradle-api/4.1/com/android/build/api/dsl/BuildType#matchingfallbackstony
10/06/2022, 4:17 PMStylianos Gakis
10/06/2022, 4:40 PMtony
10/06/2022, 4:46 PMStylianos Gakis
10/07/2022, 9:56 AMplugins {
alias(libs.plugins.androidLibrary)
alias(libs.plugins.kotlin)
}
android {
defaultConfig {
minSdk = 23
compileSdk = 33
targetSdk = 33
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
kotlinOptions {
jvmTarget = JavaVersion.VERSION_11.toString()
}
}
I get both compileDebugSources
and compileReleaseSources
and so on.
That’s quite odd imo, I don’t see how most libraries need to have more than one buildType, must be missing smth.
Now just need to check if I can opt out of that or just accept that I’ll have both of them 🤷♂️tony
10/07/2022, 3:56 PMHemanth Sai Veluvolu
10/08/2022, 2:44 AM