Magisk/app/build.gradle

37 lines
964 B
Groovy
Raw Normal View History

2016-08-05 18:58:05 +02:00
apply plugin: 'com.android.application'
android {
compileSdkVersion 24
2016-08-25 12:08:07 +02:00
buildToolsVersion "24.0.2"
2016-08-05 18:58:05 +02:00
defaultConfig {
applicationId "com.topjohnwu.magisk"
minSdkVersion 21
targetSdkVersion 24
2016-08-26 12:45:35 +02:00
versionCode 4
2016-08-23 01:38:03 +02:00
versionName "2.0"
2016-08-27 13:02:41 +02:00
jackOptions {
enabled true
}
2016-08-05 18:58:05 +02:00
}
buildTypes {
release {
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
2016-08-27 13:02:41 +02:00
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
2016-08-05 18:58:05 +02:00
}
dependencies {
2016-08-21 15:29:42 +02:00
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:recyclerview-v7:24.2.0'
compile 'com.android.support:cardview-v7:24.2.0'
compile 'com.android.support:design:24.2.0'
2016-08-22 10:09:36 +02:00
2016-08-27 13:02:41 +02:00
compile 'com.jakewharton:butterknife:8.4.0'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.4.0'
2016-08-05 18:58:05 +02:00
}