12345678910111213141516171819202122232425262728293031 |
- plugins {
- id 'com.android.library'
- //id 'org.jetbrains.kotlin.android'
- //id 'kotlin-android-extensions'
- }
- android {
- compileSdkVersion 32
- defaultConfig {
- minSdkVersion 19
- targetSdkVersion 22
- versionCode 1
- versionName "1.0"
- }
- }
- dependencies {
- implementation fileTree(dir: 'libs', include: ['*.jar', '*.aar'])
- implementation 'androidx.appcompat:appcompat:1.3.0-alpha02'//1.1.0
- implementation 'com.google.android.material:material:1.1.0'
- implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
- //EventBus
- implementation 'org.greenrobot:eventbus:3.1.1'
- // Glide
- implementation 'com.github.bumptech.glide:glide:4.12.0'
- annotationProcessor 'com.github.bumptech.glide:compiler:4.12.0'
- }
|