123456789101112131415161718192021222324252627282930313233 |
- apply plugin: 'com.android.library'
- android {
- compileSdkVersion 27
- defaultConfig {
- //applicationId "com.lzx.demo"
- minSdkVersion 16
- targetSdkVersion 27
- versionCode 1
- versionName "1.0"
- vectorDrawables.useSupportLibrary = true
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- }
- dependencies {
- implementation fileTree(include: ['*.jar'], dir: 'libs')
- implementation 'androidx.cardview:cardview:1.0.0'
- implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
- implementation 'com.github.bumptech.glide:glide:4.3.1'
- annotationProcessor 'com.github.bumptech.glide:compiler:4.3.1'
- implementation project(path: ':LRecyclerview_library')
- implementation 'com.nineoldandroids:library:2.4.0'
- //implementation 'com.github.jdsjlzx:banner:1.0.0'
- implementation 'com.google.android.material:material:1.0.0'
- }
|