mirror of
https://github.com/syncthing/syncthing-android.git
synced 2024-11-25 22:01:16 +00:00
Fix Travis build
This commit is contained in:
parent
0ace9015bc
commit
6c77b67bc2
2 changed files with 7 additions and 5 deletions
|
@ -7,11 +7,11 @@ dist: trusty
|
||||||
android:
|
android:
|
||||||
components:
|
components:
|
||||||
- tools
|
- tools
|
||||||
- android-26
|
- android-27
|
||||||
- build-tools-26.0.2
|
- build-tools-27.0.2
|
||||||
- platform-tools
|
- platform-tools
|
||||||
- build-tools-26.0.2
|
- build-tools-27.0.2
|
||||||
- android-26
|
- android-27
|
||||||
- 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)
|
||||||
|
|
|
@ -19,8 +19,10 @@ dependencies {
|
||||||
}
|
}
|
||||||
|
|
||||||
android {
|
android {
|
||||||
compileSdkVersion 26
|
// Changes to these values need to be reflected in `.travis.yml`
|
||||||
|
compileSdkVersion 27
|
||||||
buildToolsVersion "27.0.2"
|
buildToolsVersion "27.0.2"
|
||||||
|
|
||||||
buildTypes.debug.applicationIdSuffix ".debug"
|
buildTypes.debug.applicationIdSuffix ".debug"
|
||||||
dataBinding.enabled = true
|
dataBinding.enabled = true
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue