2020-07-04 15:53:31 +02:00
|
|
|
plugins {
|
|
|
|
id("com.android.application")
|
|
|
|
kotlin("android")
|
2020-11-23 21:35:24 +01:00
|
|
|
kotlin("plugin.parcelize")
|
2020-07-04 15:53:31 +02:00
|
|
|
kotlin("kapt")
|
|
|
|
id("androidx.navigation.safeargs.kotlin")
|
|
|
|
}
|
|
|
|
|
|
|
|
kapt {
|
|
|
|
correctErrorTypes = true
|
|
|
|
useBuildCache = true
|
|
|
|
mapDiagnosticLocations = true
|
|
|
|
javacOptions {
|
|
|
|
option("-Xmaxerrs", 1000)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
|
|
|
defaultConfig {
|
|
|
|
applicationId = "com.topjohnwu.magisk"
|
|
|
|
vectorDrawables.useSupportLibrary = true
|
|
|
|
multiDexEnabled = true
|
2020-12-24 13:46:31 +01:00
|
|
|
versionName = Config.appVersion
|
|
|
|
versionCode = Config.appVersionCode
|
2020-07-04 15:53:31 +02:00
|
|
|
|
2020-08-13 18:40:24 +02:00
|
|
|
javaCompileOptions.annotationProcessorOptions.arguments(
|
2020-12-24 13:46:31 +01:00
|
|
|
mapOf("room.incremental" to "true")
|
2020-08-13 18:40:24 +02:00
|
|
|
)
|
2020-07-04 15:53:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
getByName("release") {
|
|
|
|
isMinifyEnabled = true
|
|
|
|
isShrinkResources = true
|
|
|
|
proguardFiles(
|
|
|
|
getDefaultProguardFile("proguard-android-optimize.txt"),
|
|
|
|
"proguard-rules.pro"
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
buildFeatures {
|
|
|
|
dataBinding = true
|
|
|
|
}
|
|
|
|
|
|
|
|
dependenciesInfo {
|
|
|
|
includeInApk = false
|
|
|
|
includeInBundle = false
|
|
|
|
}
|
|
|
|
|
|
|
|
packagingOptions {
|
|
|
|
exclude("/META-INF/**")
|
|
|
|
exclude("/org/bouncycastle/**")
|
|
|
|
exclude("/kotlin/**")
|
|
|
|
exclude("/kotlinx/**")
|
|
|
|
exclude("/okhttp3/**")
|
2020-10-17 15:46:36 +02:00
|
|
|
exclude("/*.txt")
|
|
|
|
exclude("/*.bin")
|
2020-07-04 15:53:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
kotlinOptions {
|
|
|
|
jvmTarget = "1.8"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-17 09:44:51 +02:00
|
|
|
val copyUtils = tasks.register("copyUtils", Copy::class) {
|
|
|
|
from(rootProject.file("scripts/util_functions.sh"))
|
|
|
|
into("src/main/res/raw")
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks["preBuild"]?.dependsOn(copyUtils)
|
|
|
|
|
2020-07-04 15:53:31 +02:00
|
|
|
dependencies {
|
|
|
|
implementation(fileTree(mapOf("dir" to "libs", "include" to listOf("*.jar"))))
|
2020-08-15 14:43:28 +02:00
|
|
|
implementation(kotlin("stdlib"))
|
2020-07-04 15:53:31 +02:00
|
|
|
implementation(project(":app:shared"))
|
|
|
|
|
|
|
|
implementation("com.github.topjohnwu:jtar:1.0.0")
|
2020-08-11 09:54:19 +02:00
|
|
|
implementation("com.github.topjohnwu:indeterminate-checkbox:1.0.7")
|
2020-10-06 09:40:57 +02:00
|
|
|
implementation("com.github.topjohnwu:lz4-java:1.7.1")
|
2020-07-04 15:53:31 +02:00
|
|
|
implementation("com.jakewharton.timber:timber:4.7.1")
|
|
|
|
|
2020-12-27 02:03:10 +01:00
|
|
|
val vBC = "1.67"
|
|
|
|
implementation("org.bouncycastle:bcprov-jdk15on:${vBC}")
|
|
|
|
implementation("org.bouncycastle:bcpkix-jdk15on:${vBC}")
|
|
|
|
|
2020-07-04 15:53:31 +02:00
|
|
|
val vBAdapt = "4.0.0"
|
|
|
|
val bindingAdapter = "me.tatarka.bindingcollectionadapter2:bindingcollectionadapter"
|
|
|
|
implementation("${bindingAdapter}:${vBAdapt}")
|
|
|
|
implementation("${bindingAdapter}-recyclerview:${vBAdapt}")
|
|
|
|
|
2020-09-23 22:57:43 +02:00
|
|
|
val vMarkwon = "4.6.0"
|
2020-07-04 15:53:31 +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")
|
|
|
|
|
2020-08-15 14:43:28 +02:00
|
|
|
val vLibsu = "3.0.2"
|
2020-07-04 15:53:31 +02:00
|
|
|
implementation("com.github.topjohnwu.libsu:core:${vLibsu}")
|
|
|
|
implementation("com.github.topjohnwu.libsu:io:${vLibsu}")
|
|
|
|
|
|
|
|
val vKoin = "2.1.6"
|
|
|
|
implementation("org.koin:koin-core:${vKoin}")
|
|
|
|
implementation("org.koin:koin-android:${vKoin}")
|
|
|
|
implementation("org.koin:koin-androidx-viewmodel:${vKoin}")
|
|
|
|
|
|
|
|
val vRetrofit = "2.9.0"
|
|
|
|
implementation("com.squareup.retrofit2:retrofit:${vRetrofit}")
|
|
|
|
implementation("com.squareup.retrofit2:converter-moshi:${vRetrofit}")
|
|
|
|
implementation("com.squareup.retrofit2:converter-scalars:${vRetrofit}")
|
|
|
|
|
|
|
|
val vOkHttp = "3.12.12"
|
|
|
|
implementation("com.squareup.okhttp3:okhttp") {
|
|
|
|
version {
|
|
|
|
strictly(vOkHttp)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
implementation("com.squareup.okhttp3:logging-interceptor:${vOkHttp}")
|
|
|
|
implementation("com.squareup.okhttp3:okhttp-dnsoverhttps:${vOkHttp}")
|
|
|
|
|
2020-10-06 09:40:57 +02:00
|
|
|
val vMoshi = "1.11.0"
|
2020-07-04 15:53:31 +02:00
|
|
|
implementation("com.squareup.moshi:moshi:${vMoshi}")
|
|
|
|
kapt("com.squareup.moshi:moshi-kotlin-codegen:${vMoshi}")
|
|
|
|
|
2020-10-15 11:46:15 +02:00
|
|
|
val vRoom = "2.3.0-alpha03"
|
2020-07-04 15:53:31 +02:00
|
|
|
implementation("androidx.room:room-runtime:${vRoom}")
|
2020-07-09 13:49:14 +02:00
|
|
|
implementation("androidx.room:room-ktx:${vRoom}")
|
2020-07-04 15:53:31 +02:00
|
|
|
kapt("androidx.room:room-compiler:${vRoom}")
|
|
|
|
|
2020-08-15 14:43:28 +02:00
|
|
|
val vNav: String by rootProject.extra
|
|
|
|
implementation("androidx.navigation:navigation-fragment-ktx:${vNav}")
|
|
|
|
implementation("androidx.navigation:navigation-ui-ktx:${vNav}")
|
2020-07-04 15:53:31 +02:00
|
|
|
|
|
|
|
implementation("androidx.biometric:biometric:1.0.1")
|
2020-11-13 09:58:41 +01:00
|
|
|
implementation("androidx.constraintlayout:constraintlayout:2.0.4")
|
2020-07-04 15:53:31 +02:00
|
|
|
implementation("androidx.swiperefreshlayout:swiperefreshlayout:1.1.0")
|
|
|
|
implementation("androidx.browser:browser:1.2.0")
|
|
|
|
implementation("androidx.preference:preference:1.1.1")
|
|
|
|
implementation("androidx.recyclerview:recyclerview:1.1.0")
|
|
|
|
implementation("androidx.fragment:fragment-ktx:1.2.5")
|
2020-07-24 07:43:25 +02:00
|
|
|
implementation("androidx.work:work-runtime-ktx:2.4.0")
|
2020-07-04 15:53:31 +02:00
|
|
|
implementation("androidx.transition:transition:1.3.1")
|
|
|
|
implementation("androidx.multidex:multidex:2.0.1")
|
2020-10-06 09:40:57 +02:00
|
|
|
implementation("androidx.core:core-ktx:1.3.2")
|
2020-07-09 13:49:14 +02:00
|
|
|
implementation("androidx.localbroadcastmanager:localbroadcastmanager:1.0.0")
|
2020-09-23 22:57:43 +02:00
|
|
|
implementation("com.google.android.material:material:1.2.1")
|
2020-07-04 15:53:31 +02:00
|
|
|
}
|