We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee31dd4 commit 57fa3b1Copy full SHA for 57fa3b1
1 file changed
vendor/gradle-plugin/build.gradle
@@ -284,8 +284,8 @@ android {
284
}
285
286
287
- def computeCompileSdkVersion = { -> project.hasProperty("compileSdk") ? project.compileSdk : 31 }
288
- def computeTargetSdkVersion = { -> project.hasProperty("targetSdk") ? project.targetSdk : 31 as int }
+ def computeCompileSdkVersion = { -> project.hasProperty("compileSdk") ? project.compileSdk as int : 31 }
+ def computeTargetSdkVersion = { -> project.hasProperty("targetSdk") ? project.targetSdk as int : 31 as int }
289
def computeBuildToolsVersion = { ->
290
project.hasProperty("buildToolsVersion") ? project.buildToolsVersion : "31.0.0"
291
0 commit comments