2016-08-05 18:58:05 +02:00
|
|
|
apply plugin: 'com.android.application'
|
2016-08-21 15:29:42 +02:00
|
|
|
apply plugin: 'android-apt'
|
2016-08-05 18:58:05 +02:00
|
|
|
|
|
|
|
android {
|
|
|
|
compileSdkVersion 24
|
2016-08-07 18:26:39 +02:00
|
|
|
buildToolsVersion "24.0.1"
|
2016-08-05 18:58:05 +02:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "com.topjohnwu.magisk"
|
|
|
|
minSdkVersion 21
|
|
|
|
targetSdkVersion 24
|
2016-08-16 18:56:00 +02:00
|
|
|
versionCode 3
|
|
|
|
versionName "v4"
|
2016-08-05 18:58:05 +02:00
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
compile 'eu.chainfire:libsuperuser:1.0.0.201607041850'
|
|
|
|
|
2016-08-21 15:29:42 +02:00
|
|
|
compile 'com.jakewharton:butterknife:8.2.1'
|
|
|
|
apt 'com.jakewharton:butterknife-compiler:8.2.1'
|
2016-08-05 18:58:05 +02:00
|
|
|
}
|