Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ env:
- EMULATOR_API_LEVEL=21
- ANDROID_ABI=armeabi-v7a
- EMULATOR_NAME=runtime-emu
- BUILD_TOOLS=28.0.3
- ANDROID_API=28
- BUILD_TOOLS=29.0.2
- ANDROID_API=29

matrix:
include:
Expand Down
6 changes: 3 additions & 3 deletions test-app/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,10 @@ def METADATA_OUT_PATH = "$projectDir/src/main/assets/metadata"
def pluginsJarLibraries = new LinkedList<String>()
def allJarLibraries = new LinkedList<String>()

def computeCompileSdkVersion = { -> project.hasProperty("compileSdk") ? compileSdk : 28 }
def computeTargetSdkVersion = { -> project.hasProperty("targetSdk") ? targetSdk : 28 }
def computeCompileSdkVersion = { -> project.hasProperty("compileSdk") ? compileSdk : 29 }
def computeTargetSdkVersion = { -> project.hasProperty("targetSdk") ? targetSdk : 29 }
def computeBuildToolsVersion = { ->
project.hasProperty("buildToolsVersion") ? buildToolsVersion : "28.0.3"
project.hasProperty("buildToolsVersion") ? buildToolsVersion : "29.0.2"
}

project.ext.selectedBuildType = project.hasProperty("release") ? "release" : "debug"
Expand Down
6 changes: 3 additions & 3 deletions test-app/runtime/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ if (useCCache) {
println "Use CCache build triggered."
}

project.ext._buildToolsVersion = "28.0.3"
project.ext._buildToolsVersion = "29.0.2"

android {
sourceSets {
Expand All @@ -32,12 +32,12 @@ android {
java.srcDirs = [bindingGeneratorSourcePath, defaultSrcPath]
}
}
compileSdkVersion 28
compileSdkVersion 29
buildToolsVersion project.ext._buildToolsVersion

defaultConfig {
minSdkVersion 17
targetSdkVersion 28
targetSdkVersion 29
versionCode 1
versionName "1.0"

Expand Down