Sin descripción

build.gradle 364B

123456789101112131415161718192021
  1. apply plugin: 'com.android.library'
  2. android {
  3. compileSdkVersion 28
  4. buildToolsVersion "28.0.3"
  5. defaultConfig {
  6. minSdkVersion 14
  7. targetSdkVersion 28
  8. }
  9. buildTypes {
  10. release {
  11. minifyEnabled false
  12. }
  13. }
  14. }
  15. dependencies {
  16. implementation fileTree(dir: 'libs', include: ['*.jar'])
  17. implementation 'androidx.viewpager:viewpager:1.0.0'
  18. }