66 lines
1.9 KiB
Groovy
66 lines
1.9 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 25
|
|
buildToolsVersion "25.0.2"
|
|
|
|
defaultConfig {
|
|
applicationId "com.topjohnwu.magisk"
|
|
minSdkVersion 21
|
|
targetSdkVersion 25
|
|
versionCode 20
|
|
versionName "4.0"
|
|
jackOptions {
|
|
enabled true
|
|
jackInProcess true
|
|
}
|
|
ndk {
|
|
moduleName 'zipadjust'
|
|
abiFilters 'x86', 'x86_64', 'armeabi-v7a', 'arm64-v8a'
|
|
}
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled true
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
dexOptions {
|
|
preDexLibraries = true
|
|
}
|
|
externalNativeBuild {
|
|
cmake {
|
|
path 'src/main/jni/CMakeLists.txt'
|
|
}
|
|
}
|
|
}
|
|
repositories {
|
|
jcenter()
|
|
maven { url "https://jitpack.io" }
|
|
}
|
|
|
|
dependencies {
|
|
compile fileTree(include: ['*.jar'], dir: 'libs')
|
|
|
|
compile 'com.android.support:recyclerview-v7:25.1.1'
|
|
compile 'com.android.support:cardview-v7:25.1.1'
|
|
compile 'com.android.support:design:25.1.1'
|
|
compile 'com.android.support:support-v4:25.1.1'
|
|
compile 'com.android.support:support-v13:25.1.1'
|
|
compile 'com.jakewharton:butterknife:8.5.1'
|
|
compile 'com.google.code.gson:gson:2.8.0'
|
|
compile 'com.github.clans:fab:1.6.4'
|
|
compile 'com.thoughtbot:expandablerecyclerview:1.4'
|
|
compile 'com.madgag.spongycastle:core:1.54.0.0'
|
|
compile 'com.madgag.spongycastle:prov:1.54.0.0'
|
|
compile 'com.madgag.spongycastle:pkix:1.54.0.0'
|
|
compile 'com.madgag.spongycastle:pg:1.54.0.0'
|
|
compile 'com.google.android.gms:play-services-safetynet:9.0.1'
|
|
annotationProcessor 'com.jakewharton:butterknife-compiler:8.5.1'
|
|
}
|