apply plugin: 'com.android.application' apply plugin: 'kotlin-android' android { compileSdkVersion 30 buildToolsVersion '28.0.3' defaultConfig { applicationId "com.example.zhpan.bannerviewpager" minSdkVersion 21 targetSdkVersion 30 versionCode 1 versionName "3.5.2" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } buildTypes { release { debuggable false minifyEnabled true proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } sourceSets { main { jniLibs.srcDirs = ['libs'] } } compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } viewBinding { enabled = true } dataBinding { //noinspection DataBindingWithoutKapt enabled = true } } repositories { flatDir { dirs 'libs' } } dependencies { implementation fileTree(include: ['*.jar'], dir: 'libs') implementation 'androidx.constraintlayout:constraintlayout:2.0.4' implementation 'androidx.legacy:legacy-support-v4:1.0.0' androidTestImplementation('androidx.test.espresso:espresso-core:3.1.0', { exclude group: 'com.android.support', module: 'support-annotations' }) implementation "io.reactivex.rxjava2:rxjava:$rootProject.ext.rxjava2Version" implementation "com.squareup.retrofit2:retrofit:$rootProject.ext.retrofit2Version" implementation "com.squareup.retrofit2:converter-scalars:$rootProject.ext.retrofit2Version" implementation "com.squareup.retrofit2:converter-gson:$rootProject.ext.retrofit2Version" implementation "com.squareup.retrofit2:adapter-rxjava2:$rootProject.ext.retrofit2Version" implementation "com.trello.rxlifecycle2:rxlifecycle:$rootProject.ext.rxlifecycle" implementation "com.trello.rxlifecycle2:rxlifecycle-components:$rootProject.ext.rxlifecycle" implementation 'com.jakewharton.retrofit:retrofit2-rxjava2-adapter:1.0.0' implementation 'io.reactivex.rxjava2:rxandroid:2.1.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 'com.github.bumptech.glide:glide:4.11.0' implementation 'com.scwang.smartrefresh:SmartRefreshLayout:1.1.0' implementation 'com.scwang.smartrefresh:SmartRefreshHeader:1.1.0' debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.3' implementation 'androidx.core:core-ktx:1.6.0' implementation 'androidx.cardview:cardview:1.0.0' implementation 'androidx.viewpager2:viewpager2:1.0.0' implementation 'com.github.CymChad:BaseRecyclerViewAdapterHelper:3.0.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.blankj:utilcodex:1.30.6' implementation 'com.airbnb.android:lottie:3.4.1' // implementation 'com.github.zhpanvip:bannerviewpager:3.5.6' implementation project(path: ':bannerview') }