1
0

build.gradle 564 B

1234567891011121314151617181920212223
  1. apply plugin: 'com.android.library'
  2. apply plugin: 'com.github.dcendents.android-maven'
  3. apply plugin: 'kotlin-android'
  4. android {
  5. compileSdkVersion 28
  6. defaultConfig {
  7. minSdkVersion 19
  8. }
  9. buildTypes {
  10. release {
  11. minifyEnabled false
  12. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  13. }
  14. }
  15. }
  16. dependencies {
  17. implementation 'androidx.viewpager2:viewpager2:1.0.0'
  18. api 'com.github.zhpanvip:viewpagerindicator:1.2.1'
  19. // api project(path: ':indicator')
  20. }