android: ANDROID_PLAN refresh + pin build-tools 36 (unblocks the release build) #269

Merged
developer merged 2 commits from feature/android-plan-refresh into development 2026-07-14 19:38:14 +00:00
Showing only changes of commit 0e11817654 - Show all commits
+11
View File
@@ -24,6 +24,17 @@ allprojects {
}
}
// Pin build-tools to the compileSdk-matching version for every Android module (the app + the
// Capacitor modules regenerated by `cap sync`), so AGP does not fall back to its default (35.0.0),
// which the provisioned / read-only CI SDK does not have installed.
subprojects {
afterEvaluate {
if (project.hasProperty('android')) {
android.buildToolsVersion = "36.0.0"
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}