1
0
mirror of https://github.com/fumiama/copymanga.git synced 2026-06-21 01:47:21 +08:00
update deps
This commit is contained in:
源文雨
2022-06-17 21:25:30 +08:00
parent 322705008e
commit b35bc8c3ab
12 changed files with 30 additions and 30 deletions

View File

@@ -3,13 +3,13 @@ apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
android {
compileSdkVersion 31
compileSdkVersion 32
buildToolsVersion "30.0.2"
defaultConfig {
applicationId "top.fumiama.copymanga"
minSdkVersion 23
targetSdkVersion 31
targetSdkVersion 32
versionCode 12
versionName '1.4.2'
resConfigs "zh", "zh-rCN"
@@ -42,6 +42,15 @@ android {
}*/
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
}
kotlinOptions {
jvmTarget = '11'
}
viewBinding {
enabled = true
}
@@ -51,16 +60,13 @@ dependencies {
implementation fileTree(dir: "libs", include: ["*.jar"])
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation 'androidx.core:core-ktx:1.8.0'
//implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'androidx.cardview:cardview:1.0.0'
implementation 'androidx.viewpager2:viewpager2:1.0.0'
//implementation 'com.google.android.material:material:1.2.1'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
implementation 'com.github.bumptech.glide:glide:4.12.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.12.0'
implementation 'com.google.code.gson:gson:2.8.9'
//implementation 'com.liaoinstan.springview:library:1.7.0'
}