2016-08-05 16:58:05 +00:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
|
|
|
compileSdkVersion 24
|
2016-08-07 16:26:39 +00:00
|
|
|
buildToolsVersion "24.0.1"
|
2016-08-05 16:58:05 +00:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "com.topjohnwu.magisk"
|
|
|
|
minSdkVersion 21
|
|
|
|
targetSdkVersion 24
|
2016-08-16 16:56:00 +00:00
|
|
|
versionCode 3
|
|
|
|
versionName "v4"
|
2016-08-17 10:01:58 +00:00
|
|
|
|
|
|
|
jackOptions {
|
|
|
|
enabled true
|
|
|
|
}
|
2016-08-05 16:58:05 +00:00
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
2016-08-20 15:26:49 +00:00
|
|
|
compile project(':lib:RootCommands')
|
2016-08-05 16:58:05 +00:00
|
|
|
}
|