mirror of
https://github.com/topjohnwu/Magisk.git
synced 2025-02-17 20:08:30 +00:00
26 lines
567 B
Groovy
26 lines
567 B
Groovy
![]() |
apply plugin: 'com.android.application'
|
||
|
|
||
|
android {
|
||
|
compileSdkVersion 24
|
||
|
buildToolsVersion "24.0.0"
|
||
|
|
||
|
defaultConfig {
|
||
|
applicationId "com.topjohnwu.magisk"
|
||
|
minSdkVersion 21
|
||
|
targetSdkVersion 24
|
||
|
versionCode 1
|
||
|
versionName "1.0"
|
||
|
}
|
||
|
buildTypes {
|
||
|
release {
|
||
|
minifyEnabled false
|
||
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
||
|
testCompile 'junit:junit:4.12'
|
||
|
}
|