123456789101112131415161718192021 |
- apply plugin: 'com.android.library'
- android {
- compileSdkVersion 28
- buildToolsVersion "28.0.3"
- defaultConfig {
- minSdkVersion 14
- targetSdkVersion 28
- }
- buildTypes {
- release {
- minifyEnabled false
- }
- }
- }
- dependencies {
- implementation fileTree(dir: 'libs', include: ['*.jar'])
- implementation 'androidx.viewpager:viewpager:1.0.0'
- }
|