2017-12-04 06:21:55 +00:00
|
|
|
apply plugin: 'com.android.application'
|
2016-08-05 16:58:05 +00:00
|
|
|
|
2017-12-04 06:21:55 +00:00
|
|
|
android {
|
|
|
|
defaultConfig {
|
2019-01-30 08:10:12 +00:00
|
|
|
applicationId 'com.topjohnwu.magisk'
|
2018-12-27 06:35:55 +00:00
|
|
|
vectorDrawables.useSupportLibrary = true
|
2019-03-08 15:16:02 +00:00
|
|
|
versionName rootProject.ext.configProps['appVersion']
|
|
|
|
versionCode rootProject.ext.configProps['appVersionCode'] as Integer
|
|
|
|
javaCompileOptions {
|
|
|
|
annotationProcessorOptions {
|
|
|
|
argument('butterknife.debuggable', 'false')
|
|
|
|
}
|
2018-08-20 04:02:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-04 06:21:55 +00:00
|
|
|
buildTypes {
|
|
|
|
release {
|
2018-03-27 18:23:50 +00:00
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
2017-12-04 06:21:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
2018-12-12 10:51:45 +00:00
|
|
|
implementation project(':net')
|
2019-03-08 15:16:02 +00:00
|
|
|
implementation project(':shared')
|
2019-03-08 15:19:22 +00:00
|
|
|
implementation project(':signing')
|
2019-03-08 15:16:02 +00:00
|
|
|
implementation 'ru.noties:markwon:2.0.1'
|
|
|
|
implementation 'com.caverock:androidsvg-aar:1.3'
|
2019-03-08 15:19:22 +00:00
|
|
|
implementation 'org.kamranzafar:jtar:2.3'
|
2019-03-08 15:16:02 +00:00
|
|
|
implementation 'net.sourceforge.streamsupport:android-retrostreams:1.7.0'
|
2019-03-11 17:45:32 +00:00
|
|
|
implementation 'com.github.sevar83:indeterminate-checkbox:1.0.5'
|
2019-01-04 09:55:17 +00:00
|
|
|
|
|
|
|
def androidXVersion = "1.0.0"
|
2019-03-08 15:16:02 +00:00
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
|
|
|
|
implementation 'androidx.appcompat:appcompat:1.0.2'
|
|
|
|
implementation "androidx.preference:preference:${androidXVersion}"
|
|
|
|
implementation "androidx.recyclerview:recyclerview:${androidXVersion}"
|
|
|
|
implementation "androidx.cardview:cardview:${androidXVersion}"
|
|
|
|
implementation "com.google.android.material:material:${androidXVersion}"
|
2019-03-22 04:49:55 +00:00
|
|
|
implementation 'androidx.work:work-runtime:2.0.0'
|
2019-03-24 08:29:09 +00:00
|
|
|
implementation 'androidx.transition:transition:1.1.0-alpha02'
|
2018-10-17 01:00:01 +00:00
|
|
|
|
2019-03-22 04:49:55 +00:00
|
|
|
def libsuVersion = '2.3.2'
|
2019-03-08 15:19:22 +00:00
|
|
|
implementation "com.github.topjohnwu.libsu:core:${libsuVersion}"
|
|
|
|
implementation "com.github.topjohnwu.libsu:io:${libsuVersion}"
|
|
|
|
|
2019-03-01 04:42:08 +00:00
|
|
|
def butterKnifeVersion = '10.1.0'
|
2019-03-08 15:16:02 +00:00
|
|
|
implementation "com.jakewharton:butterknife-runtime:${butterKnifeVersion}"
|
|
|
|
annotationProcessor "com.jakewharton:butterknife-compiler:${butterKnifeVersion}"
|
2016-08-05 16:58:05 +00:00
|
|
|
}
|