2016-08-06 00:58:05 +08:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
2017-06-16 03:06:22 +08:00
|
|
|
compileSdkVersion 26
|
|
|
|
buildToolsVersion "26.0.0"
|
2016-08-06 00:58:05 +08:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "com.topjohnwu.magisk"
|
|
|
|
minSdkVersion 21
|
2017-06-16 03:06:22 +08:00
|
|
|
targetSdkVersion 26
|
2017-07-19 00:38:25 +08:00
|
|
|
versionCode 50
|
|
|
|
versionName "5.1.0"
|
2016-11-23 13:46:52 +08:00
|
|
|
ndk {
|
|
|
|
moduleName 'zipadjust'
|
2017-05-12 03:32:42 +08:00
|
|
|
abiFilters 'x86', 'armeabi-v7a'
|
2016-11-23 13:46:52 +08:00
|
|
|
}
|
2016-08-06 00:58:05 +08:00
|
|
|
}
|
2016-09-09 23:40:57 -05:00
|
|
|
|
2016-08-06 00:58:05 +08:00
|
|
|
buildTypes {
|
|
|
|
release {
|
2016-12-11 20:38:15 +08:00
|
|
|
minifyEnabled true
|
2017-06-20 17:54:40 +08:00
|
|
|
shrinkResources true
|
2016-08-06 00:58:05 +08:00
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
2016-08-27 19:02:41 +08:00
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
}
|
2016-11-07 21:06:18 +08:00
|
|
|
dexOptions {
|
2017-06-16 03:06:22 +08:00
|
|
|
preDexLibraries true
|
|
|
|
javaMaxHeapSize "2g"
|
2016-11-07 21:06:18 +08:00
|
|
|
}
|
2016-11-23 13:46:52 +08:00
|
|
|
externalNativeBuild {
|
|
|
|
cmake {
|
2017-01-22 00:37:53 +01:00
|
|
|
path 'src/main/jni/CMakeLists.txt'
|
2016-11-23 13:46:52 +08:00
|
|
|
}
|
|
|
|
}
|
2017-03-31 16:04:12 +08:00
|
|
|
lintOptions {
|
|
|
|
disable 'MissingTranslation'
|
|
|
|
}
|
2016-08-06 00:58:05 +08:00
|
|
|
}
|
2016-09-09 23:40:57 -05:00
|
|
|
repositories {
|
2016-09-15 07:35:12 -05:00
|
|
|
jcenter()
|
|
|
|
maven { url "https://jitpack.io" }
|
2017-06-16 03:06:22 +08:00
|
|
|
maven { url "https://maven.google.com" }
|
2016-09-09 23:40:57 -05:00
|
|
|
}
|
2016-08-06 00:58:05 +08:00
|
|
|
|
|
|
|
dependencies {
|
2017-06-16 03:06:22 +08:00
|
|
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
|
|
|
implementation 'com.android.support:recyclerview-v7:26.0.0-beta2'
|
|
|
|
implementation 'com.android.support:cardview-v7:26.0.0-beta2'
|
|
|
|
implementation 'com.android.support:design:26.0.0-beta2'
|
|
|
|
implementation 'com.android.support:support-v4:26.0.0-beta2'
|
2017-07-13 14:47:47 +08:00
|
|
|
implementation 'com.jakewharton:butterknife:8.7.0'
|
2017-06-16 03:06:22 +08:00
|
|
|
implementation 'com.thoughtbot:expandablerecyclerview:1.4'
|
|
|
|
implementation 'us.feras.mdv:markdownview:1.1.0'
|
|
|
|
implementation 'com.madgag.spongycastle:core:1.54.0.0'
|
|
|
|
implementation 'com.madgag.spongycastle:prov:1.54.0.0'
|
|
|
|
implementation 'com.madgag.spongycastle:pkix:1.54.0.0'
|
|
|
|
implementation 'com.google.android.gms:play-services-safetynet:9.0.1'
|
2017-07-13 14:47:47 +08:00
|
|
|
annotationProcessor 'com.jakewharton:butterknife-compiler:8.7.0'
|
2016-08-06 00:58:05 +08:00
|
|
|
}
|