apply plugin: 'com.android.application' apply plugin: 'kotlin-android' apply plugin: 'kotlin-android-extensions' apply plugin: 'kotlin-kapt' kapt { correctErrorTypes = true useBuildCache = true mapDiagnosticLocations = true javacOptions { option("-Xmaxerrs", 1000) } } android { defaultConfig { applicationId 'com.topjohnwu.magisk' vectorDrawables.useSupportLibrary = true multiDexEnabled true versionName props['appVersion'] versionCode props['appVersionCode'] as Integer javaCompileOptions { annotationProcessorOptions { arguments = ["room.incremental":"true"] } } } buildTypes { release { minifyEnabled true shrinkResources true proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' } } dataBinding { enabled = true } packagingOptions { exclude '/META-INF/**' exclude '/androidsupportmultidexversion.txt' exclude '/org/bouncycastle/**' exclude '/kotlin/**' exclude '/kotlinx/**' exclude '/okhttp3/**' } kotlinOptions { jvmTarget = '1.8' } } androidExtensions { experimental = true } dependencies { implementation fileTree(include: ['*.jar'], dir: 'libs') implementation project(':shared') implementation project(':signing') implementation 'com.github.topjohnwu:jtar:1.0.0' implementation 'com.jakewharton.timber:timber:4.7.1' implementation 'com.ncapdevi:frag-nav:3.2.0' implementation 'com.github.pwittchen:reactivenetwork-rx2:3.0.6' implementation 'io.reactivex.rxjava2:rxjava:2.2.18' implementation 'io.reactivex.rxjava2:rxkotlin:2.4.0' implementation 'io.reactivex.rxjava2:rxandroid:2.1.1' implementation "org.jetbrains.kotlin:kotlin-stdlib:${vKotlin}" implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:${vKotlin}" def vBAdapt = '3.1.1' def bindingAdapter = 'me.tatarka.bindingcollectionadapter2:bindingcollectionadapter' implementation "${bindingAdapter}:${vBAdapt}" implementation "${bindingAdapter}-recyclerview:${vBAdapt}" def vMarkwon = '4.2.1' implementation "io.noties.markwon:core:${vMarkwon}" implementation "io.noties.markwon:html:${vMarkwon}" implementation "io.noties.markwon:image:${vMarkwon}" implementation 'com.caverock:androidsvg:1.4' def vLibsu = '2.5.1' implementation "com.github.topjohnwu.libsu:core:${vLibsu}" implementation "com.github.topjohnwu.libsu:io:${vLibsu}" def vKoin = '2.0.1' implementation "org.koin:koin-core:${vKoin}" implementation "org.koin:koin-android:${vKoin}" implementation "org.koin:koin-androidx-viewmodel:${vKoin}" def vRetrofit = '2.7.1' implementation "com.squareup.retrofit2:retrofit:${vRetrofit}" implementation "com.squareup.retrofit2:converter-moshi:${vRetrofit}" implementation "com.squareup.retrofit2:converter-scalars:${vRetrofit}" implementation "com.squareup.retrofit2:adapter-rxjava2:${vRetrofit}" def vOkHttp = '3.12.10' implementation("com.squareup.okhttp3:okhttp:${vOkHttp}") { force = true } implementation "com.squareup.okhttp3:logging-interceptor:${vOkHttp}" def vMoshi = '1.10.0-SNAPSHOT' implementation "com.squareup.moshi:moshi:${vMoshi}" kapt "com.squareup.moshi:moshi-kotlin-codegen:${vMoshi}" def vRoom = '2.2.4' implementation "androidx.room:room-runtime:${vRoom}" implementation "androidx.room:room-rxjava2:${vRoom}" kapt "androidx.room:room-compiler:${vRoom}" def vNav = '2.2.1' implementation "androidx.navigation:navigation-fragment-ktx:${vNav}" implementation "androidx.navigation:navigation-ui-ktx:${vNav}" implementation 'androidx.biometric:biometric:1.0.1' implementation 'androidx.constraintlayout:constraintlayout:2.0.0-beta4' implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0-beta01' implementation 'androidx.browser:browser:1.2.0' implementation 'androidx.preference:preference:1.1.0' implementation 'androidx.recyclerview:recyclerview:1.1.0' implementation 'androidx.fragment:fragment-ktx:1.2.2' implementation 'androidx.work:work-runtime:2.3.3' implementation 'androidx.transition:transition:1.3.1' implementation 'androidx.multidex:multidex:2.0.1' implementation 'androidx.core:core-ktx:1.2.0' implementation 'com.google.android.material:material:1.2.0-alpha03' }