|
@@ -1,7 +1,8 @@
|
|
apply plugin: 'com.android.application'
|
|
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlin-android'
|
|
android {
|
|
android {
|
|
- compileSdkVersion 33
|
|
|
|
|
|
+ namespace 'com.example.zhpan.banner'
|
|
|
|
+ compileSdk 35
|
|
defaultConfig {
|
|
defaultConfig {
|
|
applicationId "com.example.zhpan.bannerviewpager"
|
|
applicationId "com.example.zhpan.bannerviewpager"
|
|
minSdkVersion 21
|
|
minSdkVersion 21
|
|
@@ -25,8 +26,12 @@ android {
|
|
}
|
|
}
|
|
|
|
|
|
compileOptions {
|
|
compileOptions {
|
|
- sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
- targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
|
|
+ sourceCompatibility JavaVersion.VERSION_17
|
|
|
|
+ targetCompatibility JavaVersion.VERSION_17
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ kotlinOptions {
|
|
|
|
+ jvmTarget = "17"
|
|
}
|
|
}
|
|
|
|
|
|
viewBinding {
|
|
viewBinding {
|
|
@@ -46,7 +51,7 @@ repositories {
|
|
|
|
|
|
dependencies {
|
|
dependencies {
|
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
|
- implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
|
|
|
|
|
|
+ implementation 'androidx.constraintlayout:constraintlayout:2.2.1'
|
|
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
|
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
|
androidTestImplementation('androidx.test.espresso:espresso-core:3.1.0', {
|
|
androidTestImplementation('androidx.test.espresso:espresso-core:3.1.0', {
|
|
exclude group: 'com.android.support', module: 'support-annotations'
|
|
exclude group: 'com.android.support', module: 'support-annotations'
|
|
@@ -62,22 +67,22 @@ dependencies {
|
|
implementation 'io.reactivex.rxjava2:rxandroid:2.1.1'
|
|
implementation 'io.reactivex.rxjava2:rxandroid:2.1.1'
|
|
implementation 'com.squareup.okhttp3:logging-interceptor:4.8.1'
|
|
implementation 'com.squareup.okhttp3:logging-interceptor:4.8.1'
|
|
|
|
|
|
- implementation 'androidx.appcompat:appcompat:1.3.0'
|
|
|
|
- implementation 'androidx.recyclerview:recyclerview:1.2.1'
|
|
|
|
|
|
+ implementation 'androidx.appcompat:appcompat:1.7.1'
|
|
|
|
+ implementation 'androidx.recyclerview:recyclerview:1.4.0'
|
|
implementation 'com.github.bumptech.glide:glide:4.11.0'
|
|
implementation 'com.github.bumptech.glide:glide:4.11.0'
|
|
implementation 'io.github.scwang90:refresh-layout-kernel:2.1.0'
|
|
implementation 'io.github.scwang90:refresh-layout-kernel:2.1.0'
|
|
implementation 'io.github.scwang90:refresh-header-classics:2.1.0'
|
|
implementation 'io.github.scwang90:refresh-header-classics:2.1.0'
|
|
implementation 'io.github.scwang90:refresh-header-material:2.1.0'
|
|
implementation 'io.github.scwang90:refresh-header-material:2.1.0'
|
|
debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.10'
|
|
debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.10'
|
|
- implementation 'androidx.core:core-ktx:1.6.0'
|
|
|
|
|
|
+ implementation 'androidx.core:core-ktx:1.16.0'
|
|
implementation 'androidx.cardview:cardview:1.0.0'
|
|
implementation 'androidx.cardview:cardview:1.0.0'
|
|
- implementation 'androidx.viewpager2:viewpager2:1.0.0'
|
|
|
|
|
|
+ implementation 'androidx.viewpager2:viewpager2:1.1.0'
|
|
implementation 'io.github.cymchad:BaseRecyclerViewAdapterHelper4:4.1.4'
|
|
implementation 'io.github.cymchad:BaseRecyclerViewAdapterHelper4:4.1.4'
|
|
- implementation 'com.google.android.material:material:1.3.0'
|
|
|
|
- implementation "androidx.navigation:navigation-fragment-ktx:2.3.5"
|
|
|
|
- implementation "androidx.navigation:navigation-ui-ktx:2.3.5"
|
|
|
|
- implementation 'com.tencent.bugly:crashreport:3.2.1'
|
|
|
|
- implementation 'com.google.android.material:material:1.3.0'
|
|
|
|
|
|
+ implementation 'com.google.android.material:material:1.12.0'
|
|
|
|
+ implementation "androidx.navigation:navigation-fragment-ktx:2.9.0"
|
|
|
|
+ implementation "androidx.navigation:navigation-ui-ktx:2.9.0"
|
|
|
|
+ implementation 'com.tencent.bugly:crashreport:4.1.9.3'
|
|
|
|
+ implementation 'com.google.android.material:material:1.12.0'
|
|
implementation 'com.blankj:utilcodex:1.30.6'
|
|
implementation 'com.blankj:utilcodex:1.30.6'
|
|
implementation 'com.airbnb.android:lottie:3.4.1'
|
|
implementation 'com.airbnb.android:lottie:3.4.1'
|
|
// implementation 'com.github.zhpanvip:bannerviewpager:3.5.6'
|
|
// implementation 'com.github.zhpanvip:bannerviewpager:3.5.6'
|