WIP
This commit is contained in:
@@ -5,15 +5,9 @@ plugins {
|
||||
id("kotlin-parcelize")
|
||||
id("kotlinx-serialization")
|
||||
id("com.google.android.gms.oss-licenses-plugin")
|
||||
|
||||
if (File("google-services.json").exists()) {
|
||||
println("Firebase Enabled")
|
||||
id("com.google.gms.google-services")
|
||||
id("com.google.firebase.crashlytics")
|
||||
id("com.google.firebase.firebase-perf")
|
||||
} else {
|
||||
println("Firebase Disabled")
|
||||
}
|
||||
id("com.google.gms.google-services")
|
||||
id("com.google.firebase.crashlytics")
|
||||
id("com.google.firebase.firebase-perf")
|
||||
}
|
||||
|
||||
android {
|
||||
@@ -41,7 +35,10 @@ android {
|
||||
isMinifyEnabled = true
|
||||
isShrinkResources = true
|
||||
|
||||
isCrunchPngs = false
|
||||
|
||||
proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro")
|
||||
signingConfig = signingConfigs.getByName("debug")
|
||||
}
|
||||
}
|
||||
buildFeatures {
|
||||
@@ -49,45 +46,61 @@ android {
|
||||
dataBinding = true
|
||||
compose = true
|
||||
}
|
||||
kotlinOptions {
|
||||
jvmTarget = JavaVersion.VERSION_1_8.toString()
|
||||
freeCompilerArgs = listOf("-Xuse-experimental=kotlin.Experimental")
|
||||
composeOptions {
|
||||
kotlinCompilerExtensionVersion = "1.0.0"
|
||||
}
|
||||
compileOptions {
|
||||
sourceCompatibility = JavaVersion.VERSION_1_8
|
||||
targetCompatibility = JavaVersion.VERSION_1_8
|
||||
}
|
||||
kotlinOptions {
|
||||
jvmTarget = "1.8"
|
||||
freeCompilerArgs += "-Xopt-in=kotlin.RequiresOptIn"
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation(fileTree(mapOf("dir" to "libs", "include" to listOf("*.aar"))))
|
||||
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.5.21")
|
||||
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.0")
|
||||
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.2.1")
|
||||
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
|
||||
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.2-native-mt")
|
||||
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.2.2")
|
||||
|
||||
implementation("androidx.compose.ui:ui:1.0.0-rc02")
|
||||
implementation("androidx.compose.ui:ui-tooling:1.0.0-rc02")
|
||||
implementation("androidx.compose.foundation:foundation:1.0.0-rc02")
|
||||
implementation("androidx.compose.material:material:1.0.0-rc02")
|
||||
implementation("androidx.compose.material:material-icons-core:1.0.0-rc02")
|
||||
implementation("androidx.compose.material:material-icons-extended:1.0.0-rc02")
|
||||
implementation("androidx.compose.runtime:runtime-livedata:1.0.0-rc02")
|
||||
implementation("androidx.compose.ui:ui:1.0.2")
|
||||
implementation("androidx.compose.ui:ui-tooling:1.0.2")
|
||||
implementation("androidx.compose.foundation:foundation:1.0.2")
|
||||
implementation("androidx.compose.material:material:1.0.2")
|
||||
implementation("androidx.compose.material:material-icons-core:1.0.2")
|
||||
implementation("androidx.compose.material:material-icons-extended:1.0.2")
|
||||
implementation("androidx.compose.runtime:runtime-livedata:1.0.2")
|
||||
implementation("androidx.compose.material:material-icons-extended:1.0.2")
|
||||
implementation("androidx.activity:activity-compose:1.3.1")
|
||||
|
||||
implementation("io.ktor:ktor-client-core:1.6.1")
|
||||
implementation("io.ktor:ktor-client-okhttp:1.6.1")
|
||||
implementation("io.ktor:ktor-client-serialization:1.6.1")
|
||||
implementation("com.google.accompanist:accompanist-flowlayout:0.16.1")
|
||||
implementation("com.google.accompanist:accompanist-appcompat-theme:0.16.0")
|
||||
|
||||
implementation("io.coil-kt:coil-compose:1.3.2")
|
||||
|
||||
implementation("io.ktor:ktor-client-core:1.6.3")
|
||||
implementation("io.ktor:ktor-client-okhttp:1.6.3")
|
||||
implementation("io.ktor:ktor-client-serialization:1.6.3")
|
||||
|
||||
implementation("androidx.appcompat:appcompat:1.3.1")
|
||||
implementation("androidx.activity:activity-ktx:1.3.0-rc02")
|
||||
implementation("androidx.activity:activity-ktx:1.3.1")
|
||||
implementation("androidx.fragment:fragment-ktx:1.3.6")
|
||||
implementation("androidx.preference:preference-ktx:1.1.1")
|
||||
implementation("androidx.recyclerview:recyclerview:1.2.1")
|
||||
implementation("androidx.constraintlayout:constraintlayout:2.0.4")
|
||||
implementation("androidx.constraintlayout:constraintlayout:2.1.0")
|
||||
implementation("androidx.gridlayout:gridlayout:1.0.0")
|
||||
implementation("androidx.biometric:biometric:1.1.0")
|
||||
implementation("androidx.work:work-runtime-ktx:2.6.0-beta02")
|
||||
implementation("androidx.work:work-runtime-ktx:2.6.0")
|
||||
implementation("androidx.lifecycle:lifecycle-viewmodel-compose:1.0.0-alpha07")
|
||||
|
||||
implementation("org.kodein.di:kodein-di-framework-android-x:7.6.0")
|
||||
implementation("androidx.room:room-runtime:2.3.0")
|
||||
annotationProcessor("androidx.room:room-compiler:2.3.0")
|
||||
kapt("androidx.room:room-compiler:2.3.0")
|
||||
implementation("androidx.room:room-ktx:2.3.0")
|
||||
|
||||
implementation("org.kodein.di:kodein-di-framework-compose:7.7.0")
|
||||
|
||||
implementation("com.daimajia.swipelayout:library:1.2.0@aar")
|
||||
|
||||
@@ -104,9 +117,9 @@ dependencies {
|
||||
|
||||
//implementation("com.quiph.ui:recyclerviewfastscroller:0.2.1")
|
||||
|
||||
implementation("com.github.piasy:BigImageViewer:1.8.0")
|
||||
implementation("com.github.piasy:FrescoImageLoader:1.8.0")
|
||||
implementation("com.github.piasy:FrescoImageViewFactory:1.8.0")
|
||||
implementation("com.github.piasy:BigImageViewer:1.8.1")
|
||||
implementation("com.github.piasy:FrescoImageLoader:1.8.1")
|
||||
implementation("com.github.piasy:FrescoImageViewFactory:1.8.1")
|
||||
|
||||
implementation("org.jsoup:jsoup:1.14.1")
|
||||
|
||||
@@ -117,20 +130,20 @@ dependencies {
|
||||
|
||||
implementation("ru.noties.markwon:core:3.1.0")
|
||||
|
||||
implementation("xyz.quaver:libpupil:2.1.3")
|
||||
implementation("xyz.quaver:libpupil:2.1.6")
|
||||
implementation("xyz.quaver:documentfilex:0.6.1")
|
||||
implementation("xyz.quaver:floatingsearchview:1.1.7")
|
||||
|
||||
debugImplementation("com.orhanobut:logger:2.2.0")
|
||||
implementation("org.kodein.log:kodein-log:0.11.1")
|
||||
debugImplementation("com.squareup.leakcanary:leakcanary-android:2.6")
|
||||
|
||||
testImplementation("junit:junit:4.13.2")
|
||||
testImplementation("org.mockito:mockito-inline:3.11.2")
|
||||
testImplementation("org.mockito:mockito-inline:3.12.4")
|
||||
|
||||
androidTestImplementation("androidx.test.ext:junit:1.1.3")
|
||||
androidTestImplementation("androidx.test:rules:1.4.0")
|
||||
androidTestImplementation("androidx.test:runner:1.4.0")
|
||||
androidTestImplementation("androidx.test.espresso:espresso-core:3.4.0")
|
||||
|
||||
androidTestImplementation("androidx.compose.ui:ui-test-junit4:1.0.0-rc02")
|
||||
androidTestImplementation("androidx.compose.ui:ui-test-junit4:1.1.0-alpha03")
|
||||
}
|
||||
Reference in New Issue
Block a user