Skip to content

Commit cca32f9

Browse files
authored
feat(android): update default compileSdkVersion and buildToolsVersion to 35 (#5849)
1 parent 23c07aa commit cca32f9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

vendor/gradle-plugin/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -159,10 +159,10 @@ allprojects {
159159
}
160160

161161

162-
def computeCompileSdkVersion = { -> project.hasProperty("compileSdk") ? compileSdk : 34 }
163-
def computeTargetSdkVersion = { -> project.hasProperty("targetSdk") ? targetSdk : 34 as int }
162+
def computeCompileSdkVersion = { -> project.hasProperty("compileSdk") ? compileSdk : 35 }
163+
def computeTargetSdkVersion = { -> project.hasProperty("targetSdk") ? targetSdk : 35 as int }
164164
def computeBuildToolsVersion = { ->
165-
project.hasProperty("buildToolsVersion") ? buildToolsVersion : "34.0.0"
165+
project.hasProperty("buildToolsVersion") ? buildToolsVersion : "35.0.1"
166166
}
167167

168168
android {

0 commit comments

Comments
 (0)