Bam
10/31/2024, 7:28 PMPablichjenkov
10/31/2024, 7:33 PMBam
10/31/2024, 7:39 PMtylerwilson
10/31/2024, 7:54 PMFrançois
10/31/2024, 9:15 PMtylerwilson
10/31/2024, 9:16 PMFrançois
10/31/2024, 9:27 PMFrançois
10/31/2024, 9:31 PMbinaryOption("bundleId", "your.package.name")
in the ios framework closure of your moduleBam
11/02/2024, 7:21 PM1949 tasks, 174 transforms executed in 10 projects in 12m 5s, with 1103 avoided tasks saving 2h 21m 40.950sMaybe this helps, maybe it does not. 🙂
François
11/02/2024, 8:23 PMBam
11/02/2024, 9:33 PMBam
11/02/2024, 9:54 PMBam
11/02/2024, 9:56 PMPablichjenkov
11/02/2024, 10:08 PMBam
11/02/2024, 11:16 PMBam
11/02/2024, 11:35 PM// Placed inside the android { ... } in a modules build.gradle.kts
// Makes sure dependencies with Release buildTypes fallback to the Debug build
buildTypes {
getByName("release") {
matchingFallbacks.add("debug")
}
}
// Disables Release builds
androidComponents {
beforeVariants(selector().withBuildType("release")) { variantBuilder ->
variantBuilder.enable = false
}
}
CORRECTION: Android Studio ignores this and still attempts to build Release somehow, so best to stick with Gradle commands for now.François
11/03/2024, 2:47 AM