1
0
Fork 0
mirror of https://github.com/syncthing/syncthing-android.git synced 2024-11-29 07:41:17 +00:00

Target api level 28 (fixes #1355) (#1360)

This commit is contained in:
Simon Frei 2019-07-16 09:41:30 +02:00 committed by Audrius Butkevicius
parent c6d85c3218
commit bca4df0354
2 changed files with 6 additions and 6 deletions

View file

@ -7,8 +7,8 @@ android:
components: components:
- tools - tools
- platform-tools - platform-tools
- build-tools-27.0.3 - build-tools-28.0.3
- android-27 - android-28
- extra-android-m2repository - extra-android-m2repository
# Install Android NDK (apparently there is no easier way to do this) # Install Android NDK (apparently there is no easier way to do this)
@ -24,7 +24,7 @@ before_install:
- chmod +x ~/bin/gimme - chmod +x ~/bin/gimme
- eval "$(gimme stable)" - eval "$(gimme stable)"
# Hack to accept Android licenses # Hack to accept Android licenses
- yes | sdkmanager "platforms;android-27" - yes | sdkmanager "platforms;android-28"
# Cache gradle dependencies # Cache gradle dependencies
# https://docs.travis-ci.com/user/languages/android/#Caching # https://docs.travis-ci.com/user/languages/android/#Caching

View file

@ -4,7 +4,7 @@ apply plugin: 'com.github.triplet.play'
dependencies { dependencies {
implementation 'eu.chainfire:libsuperuser:1.1.0.201903290044' implementation 'eu.chainfire:libsuperuser:1.1.0.201903290044'
implementation 'com.android.support:design:27.0.2' implementation 'com.android.support:design:28.0.0'
implementation 'com.google.zxing:android-integration:3.3.0' implementation 'com.google.zxing:android-integration:3.3.0'
implementation 'com.google.code.gson:gson:2.8.5' implementation 'com.google.code.gson:gson:2.8.5'
implementation 'org.mindrot:jbcrypt:0.4' implementation 'org.mindrot:jbcrypt:0.4'
@ -20,8 +20,8 @@ dependencies {
android { android {
// Changes to these values need to be reflected in `.travis.yml` // Changes to these values need to be reflected in `.travis.yml`
compileSdkVersion 27 compileSdkVersion 28
buildToolsVersion '27.0.3' buildToolsVersion '28.0.3'
buildTypes.debug.applicationIdSuffix ".debug" buildTypes.debug.applicationIdSuffix ".debug"
dataBinding.enabled = true dataBinding.enabled = true