summaryrefslogtreecommitdiffstats
path: root/build.gradle
diff options
context:
space:
mode:
authorJoey Rizzoli <joey@lineageos.org>2017-11-30 21:59:30 +0100
committerArne Coucheron <arco68@gmail.com>2018-01-19 00:27:13 +0100
commit0fb16bbd36976824ebf1d32a3dfd2fbfc565a6f7 (patch)
treea148ffa9977bc98261e33e1e88f70d706115fd72 /build.gradle
parentc6b85822544de5194cff97d7fe07236f5c7a5b32 (diff)
downloadandroid_packages_apps_Trebuchet-0fb16bbd36976824ebf1d32a3dfd2fbfc565a6f7.tar.gz
android_packages_apps_Trebuchet-0fb16bbd36976824ebf1d32a3dfd2fbfc565a6f7.tar.bz2
android_packages_apps_Trebuchet-0fb16bbd36976824ebf1d32a3dfd2fbfc565a6f7.zip
Trebuchet: quick settings & settings reorganization
Signed-off-by: Joey Rizzoli <joey@lineageos.org>
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle10
1 files changed, 6 insertions, 4 deletions
diff --git a/build.gradle b/build.gradle
index 5c6f6b274..f0dbc2592 100644
--- a/build.gradle
+++ b/build.gradle
@@ -14,12 +14,12 @@ apply plugin: 'com.android.application'
apply plugin: 'com.google.protobuf'
android {
- compileSdkVersion 26
- buildToolsVersion '26.0.2'
+ compileSdkVersion 27
+ buildToolsVersion '27.0.1'
defaultConfig {
minSdkVersion 23
- targetSdkVersion 26
+ targetSdkVersion 27
versionCode 1
versionName "1.0"
@@ -98,12 +98,14 @@ repositories {
google()
}
-final String SUPPORT_LIBS_VERSION = '26.1.0'
+final String SUPPORT_LIBS_VERSION = '27.0.2'
dependencies {
compile "com.android.support:support-v4:${SUPPORT_LIBS_VERSION}"
compile "com.android.support:support-dynamic-animation:${SUPPORT_LIBS_VERSION}"
compile "com.android.support:recyclerview-v7:${SUPPORT_LIBS_VERSION}"
compile "com.android.support:palette-v7:${SUPPORT_LIBS_VERSION}"
+ compile "com.android.support:appcompat-v7:${SUPPORT_LIBS_VERSION}"
+ compile "com.android.support:design:${SUPPORT_LIBS_VERSION}"
compile 'com.google.protobuf.nano:protobuf-javanano:3.0.0-alpha-7'
testCompile 'junit:junit:4.12'