|
|
|
@ -28,10 +28,6 @@ android {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
}
|
|
|
|
}
|
|
|
|
kotlinOptions {
|
|
|
|
|
|
|
|
jvmTarget = JavaVersion.VERSION_1_8.toString()
|
|
|
|
|
|
|
|
freeCompilerArgs += "-Xopt-in=kotlinx.coroutines.ExperimentalCoroutinesApi"
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
buildTypes {
|
|
|
|
debug {
|
|
|
|
debug {
|
|
|
|
applicationIdSuffix = '.debug'
|
|
|
|
applicationIdSuffix = '.debug'
|
|
|
|
@ -55,17 +51,23 @@ android {
|
|
|
|
androidExtensions {
|
|
|
|
androidExtensions {
|
|
|
|
experimental = true
|
|
|
|
experimental = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
|
|
|
|
|
|
|
|
kotlinOptions {
|
|
|
|
|
|
|
|
jvmTarget = JavaVersion.VERSION_1_8.toString()
|
|
|
|
|
|
|
|
freeCompilerArgs += ['-Xopt-in=kotlinx.coroutines.ExperimentalCoroutinesApi', '-Xjvm-default=all']
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
dependencies {
|
|
|
|
dependencies {
|
|
|
|
implementation fileTree(dir: 'libs', include: ['*.jar', '*.aar'])
|
|
|
|
implementation fileTree(dir: 'libs', include: ['*.jar', '*.aar'])
|
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
|
|
|
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.7'
|
|
|
|
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.9'
|
|
|
|
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.7'
|
|
|
|
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.9'
|
|
|
|
|
|
|
|
|
|
|
|
implementation 'androidx.core:core-ktx:1.5.0-alpha01'
|
|
|
|
implementation 'androidx.core:core-ktx:1.5.0-alpha02'
|
|
|
|
implementation 'androidx.activity:activity-ktx:1.2.0-alpha07'
|
|
|
|
implementation 'androidx.activity:activity-ktx:1.2.0-alpha08'
|
|
|
|
implementation 'androidx.fragment:fragment-ktx:1.3.0-alpha07'
|
|
|
|
implementation 'androidx.fragment:fragment-ktx:1.3.0-alpha08'
|
|
|
|
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.3.0-alpha06'
|
|
|
|
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.3.0-alpha07'
|
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-rc1'
|
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.0.1'
|
|
|
|
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
|
|
|
|
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
|
|
|
|
implementation 'androidx.recyclerview:recyclerview:1.2.0-alpha05'
|
|
|
|
implementation 'androidx.recyclerview:recyclerview:1.2.0-alpha05'
|
|
|
|
implementation 'androidx.viewpager2:viewpager2:1.1.0-alpha01'
|
|
|
|
implementation 'androidx.viewpager2:viewpager2:1.1.0-alpha01'
|
|
|
|
@ -73,7 +75,7 @@ dependencies {
|
|
|
|
implementation 'androidx.work:work-runtime-ktx:2.4.0'
|
|
|
|
implementation 'androidx.work:work-runtime-ktx:2.4.0'
|
|
|
|
implementation 'com.google.android.material:material:1.3.0-alpha02'
|
|
|
|
implementation 'com.google.android.material:material:1.3.0-alpha02'
|
|
|
|
//noinspection LifecycleAnnotationProcessorWithJava8
|
|
|
|
//noinspection LifecycleAnnotationProcessorWithJava8
|
|
|
|
kapt 'androidx.lifecycle:lifecycle-compiler:2.3.0-alpha06'
|
|
|
|
kapt 'androidx.lifecycle:lifecycle-compiler:2.3.0-alpha07'
|
|
|
|
|
|
|
|
|
|
|
|
implementation 'androidx.room:room-runtime:2.2.5'
|
|
|
|
implementation 'androidx.room:room-runtime:2.2.5'
|
|
|
|
implementation 'androidx.room:room-ktx:2.2.5'
|
|
|
|
implementation 'androidx.room:room-ktx:2.2.5'
|
|
|
|
@ -85,12 +87,12 @@ dependencies {
|
|
|
|
implementation 'com.github.moxy-community:moxy-ktx:2.1.2'
|
|
|
|
implementation 'com.github.moxy-community:moxy-ktx:2.1.2'
|
|
|
|
kapt 'com.github.moxy-community:moxy-compiler:2.1.2'
|
|
|
|
kapt 'com.github.moxy-community:moxy-compiler:2.1.2'
|
|
|
|
|
|
|
|
|
|
|
|
implementation 'com.squareup.okhttp3:okhttp:4.8.0'
|
|
|
|
implementation 'com.squareup.okhttp3:okhttp:4.8.1'
|
|
|
|
implementation 'com.squareup.okio:okio:2.7.0'
|
|
|
|
implementation 'com.squareup.okio:okio:2.7.0'
|
|
|
|
implementation 'org.jsoup:jsoup:1.13.1'
|
|
|
|
implementation 'org.jsoup:jsoup:1.13.1'
|
|
|
|
|
|
|
|
|
|
|
|
implementation 'org.koin:koin-android:2.1.5'
|
|
|
|
implementation 'org.koin:koin-android:2.2.0-alpha-1'
|
|
|
|
implementation 'io.coil-kt:coil:0.11.0'
|
|
|
|
implementation 'io.coil-kt:coil:1.0.0-rc1'
|
|
|
|
implementation 'com.davemorrissey.labs:subsampling-scale-image-view:3.10.0'
|
|
|
|
implementation 'com.davemorrissey.labs:subsampling-scale-image-view:3.10.0'
|
|
|
|
implementation 'com.tomclaw.cache:cache:1.0'
|
|
|
|
implementation 'com.tomclaw.cache:cache:1.0'
|
|
|
|
|
|
|
|
|
|
|
|
|