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
|
|
|
}
|
2016-09-10 06:40:57 +02:00
|
|
|
|
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
|
|
|
}
|
2016-09-10 06:40:57 +02:00
|
|
|
repositories {
|
2016-09-15 14:35:12 +02:00
|
|
|
jcenter()
|
|
|
|
maven { url "https://jitpack.io" }
|
2016-09-10 06:40:57 +02:00
|
|
|
}
|
2016-08-05 18:58:05 +02:00
|
|
|
|
|
|
|
dependencies {
|
2016-08-21 15:29:42 +02:00
|
|
|
compile fileTree(include: ['*.jar'], dir: 'libs')
|
2016-09-20 19:08:05 +02:00
|
|
|
compile 'com.android.support:recyclerview-v7:24.2.1'
|
|
|
|
compile 'com.android.support:cardview-v7:24.2.1'
|
|
|
|
compile 'com.android.support:design:24.2.1'
|
2016-08-27 13:02:41 +02:00
|
|
|
compile 'com.jakewharton:butterknife:8.4.0'
|
2016-09-15 14:35:12 +02:00
|
|
|
compile 'com.github.michalis-vitos:aFileChooser:master'
|
2016-09-20 19:08:05 +02:00
|
|
|
compile 'com.google.code.gson:gson:2.7'
|
2016-08-27 13:02:41 +02:00
|
|
|
annotationProcessor 'com.jakewharton:butterknife-compiler:8.4.0'
|
2016-08-05 18:58:05 +02:00
|
|
|
}
|