diff options
author | volzhs <volzhs@gmail.com> | 2018-12-04 06:46:43 +0900 |
---|---|---|
committer | volzhs <volzhs@gmail.com> | 2018-12-18 17:26:33 +0900 |
commit | b385a4b053e51a7076d87c80eb53ca451d0bdfb6 (patch) | |
tree | e96f7ec34c3c85cf8264fe3b9a5aff015399eee2 /platform/android/build.gradle.template | |
parent | 0cff752be1f6c6a61ad72bcdf340c06d08277081 (diff) |
Fix lint error/warning while building android template
Diffstat (limited to 'platform/android/build.gradle.template')
-rw-r--r-- | platform/android/build.gradle.template | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/platform/android/build.gradle.template b/platform/android/build.gradle.template index 18ffc74fc3..2fea250061 100644 --- a/platform/android/build.gradle.template +++ b/platform/android/build.gradle.template @@ -5,7 +5,7 @@ buildscript { $$GRADLE_REPOSITORY_URLS$$ } dependencies { - classpath 'com.android.tools.build:gradle:3.2.0' + classpath 'com.android.tools.build:gradle:3.2.1' $$GRADLE_CLASSPATH$$ } } @@ -22,6 +22,7 @@ allprojects { } dependencies { + implementation "com.android.support:support-core-utils:28.0.0" $$GRADLE_DEPENDENCIES$$ } @@ -29,10 +30,10 @@ android { lintOptions { abortOnError false - disable 'MissingTranslation' + disable 'MissingTranslation','UnusedResources' } - compileSdkVersion 27 + compileSdkVersion 28 buildToolsVersion "28.0.3" useLibrary 'org.apache.http.legacy' |