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>
This commit is contained in:
Jan Mulder 2019-07-11 18:50:14 +02:00 committed by Dirk Hohndel
parent 3bb60e8ffe
commit 8a53ad0505

View file

@ -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()
}
}