Magisk/app/build.gradle

30 lines
630 B
Groovy
Raw Normal View History

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