summaryrefslogtreecommitdiffstats
path: root/app/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'app/build.gradle')
-rw-r--r--app/build.gradle24
1 files changed, 14 insertions, 10 deletions
diff --git a/app/build.gradle b/app/build.gradle
index 9e0c260..a6cce62 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -1,29 +1,33 @@
apply plugin: 'com.android.application'
android {
- compileSdkVersion 25
- buildToolsVersion "25.0.2"
+ compileSdkVersion 26
+ buildToolsVersion "26.0.1"
+
defaultConfig {
applicationId "org.lineageos.jelly"
- minSdkVersion 24
- targetSdkVersion 25
+ minSdkVersion 26
+ targetSdkVersion 26
versionCode 1
versionName "1.0"
- jackOptions.enabled true
}
+
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
+
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
+
lintOptions {
disable 'RestrictedApi'
}
+
sourceSets {
main.java.srcDirs += 'src/main/java_studio'
}
@@ -31,9 +35,9 @@ android {
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
- compile 'com.android.support:appcompat-v7:25.3.1'
- compile 'com.android.support:design:25.3.1'
- compile 'com.android.support:cardview-v7:25.3.1'
- compile 'com.android.support:palette-v7:25.3.1'
- compile 'com.android.support:support-v4:25.3.1'
+ compile 'com.android.support:appcompat-v7:26.0.1'
+ compile 'com.android.support:design:26.0.1'
+ compile 'com.android.support:cardview-v7:26.0.1'
+ compile 'com.android.support:palette-v7:26.0.1'
+ compile 'com.android.support:support-v4:26.0.1'
}