refactor build.grade afterEvaluate values

This commit is contained in:
Diego Mello 2024-03-26 17:37:33 -03:00
parent 97828c1c41
commit 1485ea8f16
1 changed files with 4 additions and 4 deletions

View File

@ -91,11 +91,11 @@ subprojects { subproject ->
afterEvaluate {
if (!project.name.equalsIgnoreCase("app") && project.hasProperty("android")) {
android {
compileSdkVersion 33
buildToolsVersion "33.0.0"
compileSdkVersion rootProject.ext.compileSdkVersion
buildToolsVersion rootProject.ext.buildToolsVersion
defaultConfig {
minSdkVersion 23
targetSdkVersion 34
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
}
}
}