46 lines
1.3 KiB
Groovy
46 lines
1.3 KiB
Groovy
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
compileSdkVersion 28
|
|
|
|
viewBinding {
|
|
enabled = true
|
|
}
|
|
|
|
defaultConfig {
|
|
minSdkVersion 16
|
|
targetSdkVersion 28
|
|
versionCode 1
|
|
versionName "1.0"
|
|
|
|
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
|
|
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
|
|
//noinspection GradleCompatible
|
|
implementation 'androidx.appcompat:appcompat:1.0.0'
|
|
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
|
|
testImplementation 'junit:junit:4.12'
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0'
|
|
implementation group: 'com.squareup.picasso', name: 'picasso', version: '2.5.2'
|
|
// https://mvnrepository.com/artifact/com.github.bumptech.glide/glide
|
|
implementation group: 'com.github.bumptech.glide', name: 'glide', version: '4.9.0'
|
|
implementation 'androidx.recyclerview:recyclerview:1.0.0'
|
|
implementation group: 'com.facebook.fresco', name: 'fresco', version: '1.8.1'
|
|
|
|
implementation project(path: ':base')
|
|
}
|