aboutsummaryrefslogtreecommitdiff
path: root/android/WALT/app/build.gradle
diff options
context:
space:
mode:
authorTai Kuo <taikuo@google.com>2020-02-17 17:51:54 +0800
committerTai Kuo <taikuo@google.com>2020-06-20 09:36:27 +0800
commit90cb0e4ec27bd3ac7e172fd3510de82fa3267bc8 (patch)
tree11fd2c92acb7c565a692672a201cd71fe460b49a /android/WALT/app/build.gradle
parent907294fc13165cea2a14c5a2902098f605d1df3c (diff)
downloadwalt-90cb0e4ec27bd3ac7e172fd3510de82fa3267bc8.tar.gz
walt: app: update SDK, gradle and NDK version
targetSdkVersion 29 minSdkVersion 21 ndkVersion 21.0.6113669 gradle plugin: 4.4 -> 5.6.4 gradle: 3.1.2 -> 3.6.3 Bug: 149721303 Test: ./gradlew build -x :app:lint Change-Id: I9266f52059e2b0e9cff3790f9758ff67cad0a0d4 Signed-off-by: Tai Kuo <taikuo@google.com>
Diffstat (limited to 'android/WALT/app/build.gradle')
-rw-r--r--android/WALT/app/build.gradle17
1 files changed, 10 insertions, 7 deletions
diff --git a/android/WALT/app/build.gradle b/android/WALT/app/build.gradle
index ec99946..71a473c 100644
--- a/android/WALT/app/build.gradle
+++ b/android/WALT/app/build.gradle
@@ -2,18 +2,15 @@ apply plugin: 'com.android.application'
android {
- compileSdkVersion 27
- buildToolsVersion '27.0.3'
+ compileSdkVersion 29
+ buildToolsVersion '29.0.3'
defaultConfig {
applicationId "org.chromium.latency.walt"
- minSdkVersion 17
- targetSdkVersion 23
+ minSdkVersion 21
+ targetSdkVersion 29
versionCode 9
versionName "0.1.9"
- externalNativeBuild.ndkBuild {
- arguments "APP_PLATFORM=android-14", "APP_ALLOW_MISSING_DEPS=true"
- }
}
externalNativeBuild.ndkBuild {
@@ -30,6 +27,12 @@ android {
}
}
}
+
+ ndkVersion "21.0.6113669"
+
+ lintOptions {
+ abortOnError false
+ }
}
dependencies {