diff options
author | Jan Mulder <jlmulder@xs4all.nl> | 2019-07-11 18:50:14 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-07-18 06:39:00 -0700 |
commit | 8a53ad05059760a176317c227ff4c7cb748dcee1 (patch) | |
tree | 2d2696e1add1aecdb7fa77f7c7d4e174b38f65ce /android-mobile/build.gradle | |
parent | 3bb60e8ffe9074a2ee80144c1b32b38af8f3a019 (diff) | |
download | subsurface-8a53ad05059760a176317c227ff4c7cb748dcee1.tar.gz |
Android: newer version of Gradle plugin
Using more recent versions of the Android NDK results in a build failure
saying something like "No toolchains found in the NDK toolchains folder
for ABI with prefix: mips64el-linux-android". Mips support went away
after Android NDK, Revision r17c, and we are using r18b at this moment.
Too old Gradle stuff gets confused by this.
The solution is simple. Use a newer version of the Gradle plugin.
Signed-off-by: Jan Mulder <jlmulder@xs4all.nl>
Diffstat (limited to 'android-mobile/build.gradle')
-rw-r--r-- | android-mobile/build.gradle | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/android-mobile/build.gradle b/android-mobile/build.gradle index 4dd4a9f32..893807565 100644 --- a/android-mobile/build.gradle +++ b/android-mobile/build.gradle @@ -7,10 +7,11 @@ buildscript { repositories { jcenter() maven { url "https://dl.bintray.com/android/android-tools/" } + google() } dependencies { - classpath 'com.android.tools.build:gradle:2.3.3' + classpath 'com.android.tools.build:gradle:3.2.1' } } @@ -18,6 +19,7 @@ allprojects { repositories { jcenter() maven { url "https://dl.bintray.com/android/android-tools/" } + google() } } |