summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorMaurice Lam <yukl@google.com>2017-12-06 12:55:23 -0800
committerMaurice Lam <yukl@google.com>2017-12-06 20:03:01 -0800
commitba1332d1b4dd525a2ef313246482708cb2016052 (patch)
tree91b258e0a4efeaf259405b0960d2eff6d21e5b0a /tools
parentac5ce544be357085d4c28475db7613d4da4a32c0 (diff)
downloadsetupwizard-ba1332d1b4dd525a2ef313246482708cb2016052.tar.gz
Changes needed to upgrade to new gradle version
- Add ignore for various lint errors that is introduced in the lint update - Remove GLIF Pixel themes as they are unused and causing lint errors - Add flavor dimension "compat" as it is now required - Replace *Compile with *Implementation in the gradle files, as needed by the newer Gradle version - Use build tools 27.0.0 to avoid the Gradle warning - Use new Robolectric configuration mechanism and removed our old hack, per http://robolectric.org/getting-started/ Reference: https://developer.android.com/studio/build/gradle-plugin-3-0-0-migration.html Test: Existing tests pass Bug: 70287447 Change-Id: I505476ae3695cd06349766c5e6280299f779f272
Diffstat (limited to 'tools')
-rw-r--r--tools/gradle/android.properties4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/gradle/android.properties b/tools/gradle/android.properties
index b4a1e0c..3795eee 100644
--- a/tools/gradle/android.properties
+++ b/tools/gradle/android.properties
@@ -1,6 +1,6 @@
// Set the default SDK and build tools version for all apps
-compileSdkVersion 26
-buildToolsVersion = '26.0.0'
+compileSdkVersion 27
+buildToolsVersion = '27.0.0'
// enable Java7
compileOptions.sourceCompatibility JavaVersion.VERSION_1_7