Skip to content

Commit bb727d0

Browse files
authored
Update sdk and build tools version to 29 (#1450)
1 parent bc4365f commit bb727d0

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ env:
77
- EMULATOR_API_LEVEL=21
88
- ANDROID_ABI=armeabi-v7a
99
- EMULATOR_NAME=runtime-emu
10-
- BUILD_TOOLS=28.0.3
11-
- ANDROID_API=28
10+
- BUILD_TOOLS=29.0.2
11+
- ANDROID_API=29
1212

1313
matrix:
1414
include:

test-app/app/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,10 @@ def METADATA_OUT_PATH = "$projectDir/src/main/assets/metadata"
6464
def pluginsJarLibraries = new LinkedList<String>()
6565
def allJarLibraries = new LinkedList<String>()
6666

67-
def computeCompileSdkVersion = { -> project.hasProperty("compileSdk") ? compileSdk : 28 }
68-
def computeTargetSdkVersion = { -> project.hasProperty("targetSdk") ? targetSdk : 28 }
67+
def computeCompileSdkVersion = { -> project.hasProperty("compileSdk") ? compileSdk : 29 }
68+
def computeTargetSdkVersion = { -> project.hasProperty("targetSdk") ? targetSdk : 29 }
6969
def computeBuildToolsVersion = { ->
70-
project.hasProperty("buildToolsVersion") ? buildToolsVersion : "28.0.3"
70+
project.hasProperty("buildToolsVersion") ? buildToolsVersion : "29.0.2"
7171
}
7272

7373
project.ext.selectedBuildType = project.hasProperty("release") ? "release" : "debug"

test-app/runtime/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ if (useCCache) {
2020
println "Use CCache build triggered."
2121
}
2222

23-
project.ext._buildToolsVersion = "28.0.3"
23+
project.ext._buildToolsVersion = "29.0.2"
2424

2525
android {
2626
sourceSets {
@@ -32,12 +32,12 @@ android {
3232
java.srcDirs = [bindingGeneratorSourcePath, defaultSrcPath]
3333
}
3434
}
35-
compileSdkVersion 28
35+
compileSdkVersion 29
3636
buildToolsVersion project.ext._buildToolsVersion
3737

3838
defaultConfig {
3939
minSdkVersion 17
40-
targetSdkVersion 28
40+
targetSdkVersion 29
4141
versionCode 1
4242
versionName "1.0"
4343

0 commit comments

Comments
 (0)