2020-03-17 17:28:09 +01:00
|
|
|
plugins {
|
|
|
|
id("com.android.application")
|
|
|
|
id("kotlin-android")
|
|
|
|
id("kotlin-android-extensions")
|
|
|
|
id("kotlin-kapt")
|
|
|
|
id("androidx.navigation.safeargs.kotlin")
|
|
|
|
}
|
2019-04-11 14:49:52 +02:00
|
|
|
|
|
|
|
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-08-21 04:38:09 +02:00
|
|
|
versionName props['appVersion']
|
|
|
|
versionCode props['appVersionCode'] as Integer
|
2020-01-11 21:54:20 +01:00
|
|
|
|
|
|
|
javaCompileOptions {
|
|
|
|
annotationProcessorOptions {
|
2020-03-17 17:28:09 +01:00
|
|
|
arguments = ["room.incremental": "true"]
|
2020-01-11 21:54:20 +01:00
|
|
|
}
|
|
|
|
}
|
2018-08-20 06:02:38 +02:00
|
|
|
}
|
|
|
|
|
2017-12-04 07:21:55 +01:00
|
|
|
buildTypes {
|
|
|
|
release {
|
2019-06-01 10:13:29 +02:00
|
|
|
minifyEnabled true
|
|
|
|
shrinkResources true
|
2019-06-01 06:46:59 +02:00
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'),
|
2020-02-22 10:28:33 +01:00
|
|
|
'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 {
|
2019-11-13 23:17:21 +01:00
|
|
|
exclude '/META-INF/**'
|
2019-05-02 13:03:30 +02:00
|
|
|
exclude '/androidsupportmultidexversion.txt'
|
2019-08-02 10:16:04 +02:00
|
|
|
exclude '/org/bouncycastle/**'
|
2019-06-01 06:46:59 +02:00
|
|
|
exclude '/kotlin/**'
|
|
|
|
exclude '/kotlinx/**'
|
2019-11-13 23:17:21 +01:00
|
|
|
exclude '/okhttp3/**'
|
2019-05-02 13:03:30 +02:00
|
|
|
}
|
2019-06-11 06:22:02 +02:00
|
|
|
|
|
|
|
kotlinOptions {
|
|
|
|
jvmTarget = '1.8'
|
|
|
|
}
|
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')
|
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'
|
2020-04-19 11:44:54 +02:00
|
|
|
implementation 'com.github.pwittchen:reactivenetwork-rx2:3.0.8'
|
2019-01-04 10:55:17 +01:00
|
|
|
|
2020-04-19 11:44:54 +02:00
|
|
|
implementation 'io.reactivex.rxjava2:rxjava:2.2.19'
|
2019-10-11 09:29:55 +02:00
|
|
|
implementation 'io.reactivex.rxjava2:rxkotlin:2.4.0'
|
|
|
|
implementation 'io.reactivex.rxjava2:rxandroid:2.1.1'
|
2019-09-28 07:56:16 +02:00
|
|
|
|
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:${vKotlin}"
|
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:${vKotlin}"
|
|
|
|
|
|
|
|
def vBAdapt = '3.1.1'
|
2019-09-28 11:01:51 +02:00
|
|
|
def bindingAdapter = 'me.tatarka.bindingcollectionadapter2:bindingcollectionadapter'
|
|
|
|
implementation "${bindingAdapter}:${vBAdapt}"
|
|
|
|
implementation "${bindingAdapter}-recyclerview:${vBAdapt}"
|
2019-01-04 10:55:17 +01:00
|
|
|
|
2020-04-19 11:44:54 +02:00
|
|
|
def vMarkwon = '4.3.1'
|
2019-10-11 09:29:55 +02:00
|
|
|
implementation "io.noties.markwon:core:${vMarkwon}"
|
|
|
|
implementation "io.noties.markwon:html:${vMarkwon}"
|
|
|
|
implementation "io.noties.markwon:image:${vMarkwon}"
|
|
|
|
implementation 'com.caverock:androidsvg:1.4'
|
2019-04-03 05:58:19 +02:00
|
|
|
|
2019-09-12 18:50:44 +02:00
|
|
|
def vLibsu = '2.5.1'
|
2019-06-01 06:46:59 +02:00
|
|
|
implementation "com.github.topjohnwu.libsu:core:${vLibsu}"
|
|
|
|
implementation "com.github.topjohnwu.libsu:io:${vLibsu}"
|
2019-03-08 16:19:22 +01:00
|
|
|
|
2019-11-13 23:17:21 +01:00
|
|
|
def vKoin = '2.0.1'
|
2019-06-01 06:46:59 +02:00
|
|
|
implementation "org.koin:koin-core:${vKoin}"
|
|
|
|
implementation "org.koin:koin-android:${vKoin}"
|
|
|
|
implementation "org.koin:koin-androidx-viewmodel:${vKoin}"
|
2019-04-14 11:00:16 +02:00
|
|
|
|
2020-03-28 06:41:53 +01:00
|
|
|
def vRetrofit = '2.8.1'
|
2019-05-06 19:03:28 +02:00
|
|
|
implementation "com.squareup.retrofit2:retrofit:${vRetrofit}"
|
|
|
|
implementation "com.squareup.retrofit2:converter-moshi:${vRetrofit}"
|
2019-07-28 10:54:34 +02:00
|
|
|
implementation "com.squareup.retrofit2:converter-scalars:${vRetrofit}"
|
2019-05-06 19:03:28 +02:00
|
|
|
implementation "com.squareup.retrofit2:adapter-rxjava2:${vRetrofit}"
|
2019-06-01 06:46:59 +02:00
|
|
|
|
2020-03-09 06:54:10 +01:00
|
|
|
def vOkHttp = '3.12.10'
|
2020-01-14 17:05:44 +01:00
|
|
|
implementation("com.squareup.okhttp3:okhttp:${vOkHttp}") {
|
|
|
|
force = true
|
|
|
|
}
|
2019-05-06 19:03:28 +02:00
|
|
|
implementation "com.squareup.okhttp3:logging-interceptor:${vOkHttp}"
|
|
|
|
|
2020-02-22 08:40:20 +01:00
|
|
|
def vMoshi = '1.10.0-SNAPSHOT'
|
2019-06-01 06:46:59 +02:00
|
|
|
implementation "com.squareup.moshi:moshi:${vMoshi}"
|
2020-02-22 08:40:20 +01:00
|
|
|
kapt "com.squareup.moshi:moshi-kotlin-codegen:${vMoshi}"
|
2019-06-01 22:18:11 +02:00
|
|
|
|
2020-03-28 06:41:53 +01:00
|
|
|
def vRoom = '2.2.5'
|
2020-02-22 08:40:20 +01:00
|
|
|
implementation "androidx.room:room-runtime:${vRoom}"
|
2019-11-14 06:01:06 +01:00
|
|
|
implementation "androidx.room:room-rxjava2:${vRoom}"
|
2019-07-28 10:54:34 +02:00
|
|
|
kapt "androidx.room:room-compiler:${vRoom}"
|
2019-06-07 09:17:00 +02:00
|
|
|
|
2019-11-13 23:17:21 +01:00
|
|
|
implementation "androidx.navigation:navigation-fragment-ktx:${vNav}"
|
|
|
|
implementation "androidx.navigation:navigation-ui-ktx:${vNav}"
|
2019-08-26 20:30:10 +02:00
|
|
|
|
2020-01-11 20:50:12 +01:00
|
|
|
implementation 'androidx.biometric:biometric:1.0.1'
|
2020-01-30 17:52:39 +01:00
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-beta4'
|
2020-04-19 11:44:54 +02:00
|
|
|
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0-rc01'
|
2020-01-11 20:50:12 +01:00
|
|
|
implementation 'androidx.browser:browser:1.2.0'
|
2020-04-19 11:44:54 +02:00
|
|
|
implementation 'androidx.preference:preference:1.1.1'
|
2019-12-06 06:30:00 +01:00
|
|
|
implementation 'androidx.recyclerview:recyclerview:1.1.0'
|
2020-04-19 11:44:54 +02:00
|
|
|
implementation 'androidx.fragment:fragment-ktx:1.2.4'
|
2020-03-28 06:41:53 +01:00
|
|
|
implementation 'androidx.work:work-runtime:2.3.4'
|
2020-02-22 08:40:20 +01:00
|
|
|
implementation 'androidx.transition:transition:1.3.1'
|
2019-04-19 08:11:22 +02:00
|
|
|
implementation 'androidx.multidex:multidex:2.0.1'
|
2020-02-22 08:40:20 +01:00
|
|
|
implementation 'androidx.core:core-ktx:1.2.0'
|
2020-03-17 16:15:30 +01:00
|
|
|
implementation 'com.google.android.material:material:1.2.0-alpha05'
|
2016-08-05 18:58:05 +02:00
|
|
|
}
|