Update android apps to latest android plugin

NDK depricated mips toolchain, which is causing a build error,
because old android gradle plugin is looking for it.
Updating to latest plugin is fixing the build issue.

Test: Built skottie demo app from command line and Android Studio
Bug: skia:
Change-Id: I0071bf996c44f96969079cb680cb05ec38efdc93
Reviewed-on: https://skia-review.googlesource.com/c/159581
Reviewed-by: Heather Miller <hcm@google.com>
Reviewed-by: Hal Canary <halcanary@google.com>
Commit-Queue: Stan Iliev <stani@google.com>
This commit is contained in:
Stan Iliev 2018-10-04 11:20:59 -04:00 committed by Skia Commit-Bot
parent 58887bc3c1
commit 98590d2934
4 changed files with 7 additions and 7 deletions

View File

@ -7,7 +7,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
classpath 'com.android.tools.build:gradle:3.2.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files

View File

@ -1,6 +1,6 @@
#Fri Dec 02 09:57:59 EST 2016
#Thu Oct 04 10:41:31 EDT 2018
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-4.6-all.zip

View File

@ -7,8 +7,8 @@
apply plugin: 'com.android.application'
dependencies {
compile 'com.android.support:design:26.+'
compile 'com.android.support.test:runner:0.5'
implementation 'com.android.support:design:26.+'
implementation 'com.android.support.test:runner:0.5'
}
android {

View File

@ -7,8 +7,8 @@
apply plugin: 'com.android.application'
dependencies {
compile 'com.android.support:support-v13:23.3.0'
compile 'com.android.support:appcompat-v7:23.3.0'
implementation 'com.android.support:support-v13:23.3.0'
implementation 'com.android.support:appcompat-v7:23.3.0'
}
android {