Magisk/app/build.gradle

55 lines
2.1 KiB
Groovy
Raw Normal View History

2017-12-04 07:21:55 +01:00
apply plugin: 'com.android.application'
2016-08-05 18:58:05 +02:00
2017-12-04 07:21:55 +01:00
android {
defaultConfig {
2019-01-30 09:10:12 +01:00
applicationId 'com.topjohnwu.magisk'
2018-12-27 07:35:55 +01:00
vectorDrawables.useSupportLibrary = true
2019-04-05 13:15:54 +02:00
versionName configProps['appVersion']
versionCode configProps['appVersionCode'] as Integer
javaCompileOptions {
annotationProcessorOptions {
argument('butterknife.debuggable', 'false')
}
2018-08-20 06:02:38 +02:00
}
}
2017-12-04 07:21:55 +01:00
buildTypes {
release {
2018-03-27 20:23:50 +02:00
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
2017-12-04 07:21:55 +01:00
}
}
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
2018-12-12 11:51:45 +01:00
implementation project(':net')
implementation project(':shared')
2019-03-08 16:19:22 +01:00
implementation project(':signing')
2019-04-02 07:50:25 +02:00
implementation 'com.github.topjohnwu:jtar:1.0.0'
implementation 'net.sourceforge.streamsupport:android-retrostreams:1.7.0'
2019-03-11 18:45:32 +01:00
implementation 'com.github.sevar83:indeterminate-checkbox:1.0.5'
2019-01-04 10:55:17 +01:00
2019-04-03 05:58:19 +02:00
def markwonVersion = '3.0.0'
implementation "ru.noties.markwon:core:${markwonVersion}"
implementation "ru.noties.markwon:html:${markwonVersion}"
implementation "ru.noties.markwon:image-svg:${markwonVersion}"
2019-01-04 10:55:17 +01:00
def androidXVersion = "1.0.0"
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 05:49:55 +01:00
implementation 'androidx.work:work-runtime:2.0.0'
2019-03-24 09:29:09 +01:00
implementation 'androidx.transition:transition:1.1.0-alpha02'
2019-04-02 22:32:40 +02:00
def libsuVersion = '2.3.3'
2019-03-08 16:19:22 +01:00
implementation "com.github.topjohnwu.libsu:core:${libsuVersion}"
implementation "com.github.topjohnwu.libsu:io:${libsuVersion}"
2019-03-01 05:42:08 +01:00
def butterKnifeVersion = '10.1.0'
implementation "com.jakewharton:butterknife-runtime:${butterKnifeVersion}"
annotationProcessor "com.jakewharton:butterknife-compiler:${butterKnifeVersion}"
2016-08-05 18:58:05 +02:00
}