|
@@ -1,10 +1,10 @@
|
|
|
-apply plugin: 'com.android.application'
|
|
|
+apply plugin: "com.android.application"
|
|
|
|
|
|
-apply plugin: 'kotlin-android'
|
|
|
+apply plugin: "kotlin-android"
|
|
|
|
|
|
-apply plugin: 'kotlin-android-extensions'
|
|
|
+apply plugin: "kotlin-android-extensions"
|
|
|
|
|
|
-apply plugin: 'kotlin-kapt'
|
|
|
+apply plugin: "kotlin-kapt"
|
|
|
|
|
|
android {
|
|
|
compileSdkVersion 29
|
|
@@ -20,42 +20,39 @@ android {
|
|
|
buildTypes {
|
|
|
release {
|
|
|
minifyEnabled false
|
|
|
- proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
|
+ proguardFiles getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro"
|
|
|
}
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
dependencies {
|
|
|
- implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
|
+ implementation fileTree(dir: "libs", include: ["*.jar"])
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
|
|
- implementation 'androidx.appcompat:appcompat:1.1.0'
|
|
|
- implementation 'androidx.core:core-ktx:1.1.0'
|
|
|
- implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
|
|
|
- testImplementation 'junit:junit:4.12'
|
|
|
- androidTestImplementation 'androidx.test:runner:1.2.0'
|
|
|
- androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
|
|
|
- implementation project(path: ':net')
|
|
|
+ implementation "androidx.appcompat:appcompat:1.1.0"
|
|
|
+ implementation "androidx.core:core-ktx:1.1.0"
|
|
|
+ implementation "androidx.constraintlayout:constraintlayout:1.1.3"
|
|
|
+ testImplementation "junit:junit:4.12"
|
|
|
+ androidTestImplementation "androidx.test:runner:1.2.0"
|
|
|
+ androidTestImplementation "androidx.test.espresso:espresso-core:3.2.0"
|
|
|
+ implementation project(path: ":net")
|
|
|
|
|
|
- implementation 'com.squareup.moshi:moshi-kotlin:1.8.0'
|
|
|
- kapt 'com.squareup.moshi:moshi-kotlin-codegen:1.8.0'
|
|
|
+ implementation "androidx.recyclerview:recyclerview:1.1.0"
|
|
|
+ implementation "com.google.android.material:material:1.0.0"
|
|
|
|
|
|
- implementation 'com.github.liangjingkanji:BRV:1.2.1'
|
|
|
|
|
|
- implementation 'com.scwang.smart:refresh-header-classics:2.0.0-alpha-1'
|
|
|
- implementation 'com.scwang.smart:refresh-footer-classics:2.0.0-alpha-1'
|
|
|
+ implementation "com.github.liangjingkanji:BRV:$brv_version"
|
|
|
+ implementation "com.github.bumptech.glide:glide:$glide_version"
|
|
|
+ implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutine_version"
|
|
|
+ implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutine_version"
|
|
|
|
|
|
- implementation 'com.github.liangjingkanji:debugkit:1.2.9'
|
|
|
|
|
|
- implementation 'com.github.bumptech.glide:glide:4.9.0'
|
|
|
-
|
|
|
- implementation 'com.github.liangjingkanji:LogCat:1.0'
|
|
|
-
|
|
|
- implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.0'
|
|
|
- implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.0'
|
|
|
-
|
|
|
- implementation 'androidx.recyclerview:recyclerview:1.1.0'
|
|
|
- implementation 'com.google.android.material:material:1.0.0'
|
|
|
+ implementation "com.squareup.moshi:moshi-kotlin:1.8.0"
|
|
|
+ kapt "com.squareup.moshi:moshi-kotlin-codegen:1.8.0"
|
|
|
|
|
|
+ implementation "com.scwang.smart:refresh-header-classics:2.0.0-alpha-1"
|
|
|
+ implementation "com.scwang.smart:refresh-footer-classics:2.0.0-alpha-1"
|
|
|
|
|
|
+ implementation "com.github.liangjingkanji:debugkit:1.2.9"
|
|
|
+ implementation "com.github.liangjingkanji:LogCat:1.0"
|
|
|
}
|