Magisk/app/build.gradle

67 lines
1.8 KiB
Groovy
Raw Normal View History

2016-08-06 00:58:05 +08:00
apply plugin: 'com.android.application'
android {
2017-10-29 14:43:43 +08:00
compileSdkVersion 27
2017-11-15 00:38:38 +08:00
buildToolsVersion "27.0.1"
2016-08-06 00:58:05 +08:00
defaultConfig {
applicationId "com.topjohnwu.magisk"
minSdkVersion 21
2017-10-29 14:43:43 +08:00
targetSdkVersion 27
2017-11-06 23:21:05 +08:00
versionCode 58
versionName "5.4.1"
2016-11-23 13:46:52 +08:00
ndk {
moduleName 'zipadjust'
abiFilters 'x86', 'x86_64', 'armeabi-v7a', 'arm64-v8a'
2016-11-23 13:46:52 +08:00
}
2017-08-13 01:50:20 +08:00
javaCompileOptions {
annotationProcessorOptions {
argument('butterknife.debuggable', 'false')
}
}
2016-08-06 00:58:05 +08: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 {
preDexLibraries true
javaMaxHeapSize "2g"
2016-11-07 21:06:18 +08:00
}
2016-11-23 13:46:52 +08:00
externalNativeBuild {
cmake {
path 'src/main/jni/CMakeLists.txt'
2016-11-23 13:46:52 +08:00
}
}
lintOptions {
disable 'MissingTranslation'
}
2016-08-06 00:58:05 +08:00
}
2017-10-29 14:43:43 +08:00
repositories {
jcenter()
2017-10-29 14:43:43 +08:00
google()
maven { url "https://jitpack.io" }
}
2016-08-06 00:58:05 +08:00
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
2017-10-30 03:45:22 +08:00
implementation project(':crypto')
implementation 'com.android.support:recyclerview-v7:27.0.0'
implementation 'com.android.support:cardview-v7:27.0.0'
implementation 'com.android.support:design:27.0.0'
implementation 'com.android.support:support-v4:27.0.0'
2017-08-13 01:50:20 +08:00
implementation 'com.jakewharton:butterknife:8.8.1'
2017-10-10 23:01:10 +08:00
implementation 'com.atlassian.commonmark:commonmark:0.10.0'
2017-09-03 17:24:05 +08:00
implementation 'org.kamranzafar:jtar:2.3'
2017-08-13 01:50:20 +08:00
annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'
2016-08-06 00:58:05 +08:00
}