2017-12-04 07:21:55 +01:00
|
|
|
apply plugin: 'com.android.application'
|
2019-04-11 14:49:52 +02:00
|
|
|
apply plugin: 'kotlin-android'
|
2019-04-16 19:00:32 +02:00
|
|
|
apply plugin: 'kotlin-android-extensions'
|
2019-04-11 14:49:52 +02:00
|
|
|
apply plugin: 'kotlin-kapt'
|
|
|
|
|
|
|
|
kapt {
|
|
|
|
correctErrorTypes = true
|
|
|
|
useBuildCache = true
|
|
|
|
mapDiagnosticLocations = true
|
|
|
|
javacOptions {
|
|
|
|
option("-Xmaxerrs", 1000)
|
|
|
|
}
|
|
|
|
}
|
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-19 08:11:22 +02:00
|
|
|
multiDexEnabled true
|
2019-04-05 13:15:54 +02:00
|
|
|
versionName configProps['appVersion']
|
|
|
|
versionCode configProps['appVersionCode'] as Integer
|
2019-03-08 16:16:02 +01:00
|
|
|
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
|
|
|
}
|
|
|
|
}
|
2019-04-11 20:01:49 +02:00
|
|
|
|
|
|
|
dataBinding {
|
|
|
|
enabled = true
|
|
|
|
}
|
2019-05-02 13:03:30 +02:00
|
|
|
|
|
|
|
packagingOptions {
|
|
|
|
exclude '/META-INF/*.version'
|
2019-05-06 20:12:31 +02:00
|
|
|
//exclude '/META-INF/*.kotlin_module'
|
|
|
|
//exclude '/META-INF/rxkotlin.properties'
|
2019-05-02 13:03:30 +02:00
|
|
|
exclude '/androidsupportmultidexversion.txt'
|
|
|
|
exclude '/org/**'
|
2019-05-06 20:12:31 +02:00
|
|
|
//exclude '/kotlin/**'
|
|
|
|
//exclude '/kotlinx/**'
|
2019-05-02 13:03:30 +02:00
|
|
|
}
|
2017-12-04 07:21:55 +01:00
|
|
|
}
|
|
|
|
|
2019-05-06 19:03:28 +02:00
|
|
|
androidExtensions {
|
|
|
|
experimental = true
|
|
|
|
}
|
|
|
|
|
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')
|
2019-03-08 16:16:02 +01:00
|
|
|
implementation project(':shared')
|
2019-03-08 16:19:22 +01:00
|
|
|
implementation project(':signing')
|
2019-04-19 08:11:22 +02:00
|
|
|
|
2019-04-02 07:50:25 +02:00
|
|
|
implementation 'com.github.topjohnwu:jtar:1.0.0'
|
2019-04-19 08:11:22 +02:00
|
|
|
implementation 'com.jakewharton.timber:timber:4.7.1'
|
|
|
|
implementation 'com.github.skoumalcz:teanity:0.3.3'
|
|
|
|
implementation 'com.ncapdevi:frag-nav:3.2.0'
|
2019-01-04 10:55:17 +01:00
|
|
|
|
2019-05-06 20:12:31 +02:00
|
|
|
def vRoom = "2.1.0-alpha05"
|
|
|
|
implementation "androidx.room:room-rxjava2:${vRoom}"
|
|
|
|
|
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-04-19 07:07:39 +02:00
|
|
|
def libsuVersion = '2.5.0'
|
2019-03-08 16:19:22 +01:00
|
|
|
implementation "com.github.topjohnwu.libsu:core:${libsuVersion}"
|
|
|
|
implementation "com.github.topjohnwu.libsu:io:${libsuVersion}"
|
|
|
|
|
2019-04-11 20:01:49 +02:00
|
|
|
def koin = "2.0.0-rc-2"
|
2019-04-19 08:11:22 +02:00
|
|
|
implementation "org.koin:koin-core:${koin}"
|
|
|
|
implementation "org.koin:koin-android:${koin}"
|
|
|
|
implementation "org.koin:koin-androidx-viewmodel:${koin}"
|
2019-04-14 11:00:16 +02:00
|
|
|
|
2019-05-06 19:03:28 +02:00
|
|
|
def vRetrofit = "2.5.0"
|
|
|
|
def vOkHttp = "3.12.0"
|
|
|
|
def vMoshi = "1.8.0"
|
|
|
|
implementation "com.squareup.retrofit2:retrofit:${vRetrofit}"
|
|
|
|
implementation "com.squareup.retrofit2:converter-moshi:${vRetrofit}"
|
|
|
|
implementation "com.squareup.retrofit2:adapter-rxjava2:${vRetrofit}"
|
|
|
|
implementation "com.squareup.okhttp3:okhttp:${vOkHttp}"
|
|
|
|
implementation "com.squareup.okhttp3:logging-interceptor:${vOkHttp}"
|
|
|
|
implementation "com.squareup.moshi:moshi:${vMoshi}"
|
|
|
|
implementation "com.squareup.moshi:moshi-kotlin:${vMoshi}"
|
|
|
|
|
2019-05-06 20:12:31 +02:00
|
|
|
kapt "com.squareup.moshi:moshi-kotlin-codegen:${vMoshi}"
|
|
|
|
kapt "androidx.room:room-compiler:${vRoom}"
|
|
|
|
|
2019-05-06 19:03:28 +02:00
|
|
|
def vKotpref = "2.8.0"
|
|
|
|
implementation "com.chibatching.kotpref:kotpref:${vKotpref}"
|
|
|
|
|
2019-04-19 08:11:22 +02:00
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
|
|
|
|
implementation 'androidx.appcompat:appcompat:1.0.2'
|
2019-05-06 19:03:28 +02:00
|
|
|
implementation 'androidx.browser:browser:1.0.0'
|
2019-04-19 08:11:22 +02:00
|
|
|
implementation 'androidx.preference:preference:1.0.0'
|
|
|
|
implementation 'androidx.recyclerview:recyclerview:1.1.0-alpha04'
|
|
|
|
implementation 'androidx.cardview:cardview:1.0.0'
|
|
|
|
implementation 'com.google.android.material:material:1.1.0-alpha05'
|
|
|
|
implementation 'androidx.work:work-runtime:2.0.1'
|
|
|
|
implementation 'androidx.transition:transition:1.1.0-beta01'
|
|
|
|
implementation 'androidx.multidex:multidex:2.0.1'
|
2016-08-05 18:58:05 +02:00
|
|
|
}
|