27 lines
539 B
Groovy
27 lines
539 B
Groovy
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
compileSdkVersion 33
|
|
|
|
defaultConfig {
|
|
minSdkVersion 21
|
|
targetSdkVersion 31
|
|
versionName "5.6.5"
|
|
}
|
|
|
|
sourceSets {
|
|
main {
|
|
manifest.srcFile 'src/main/AndroidManifest.xml'
|
|
jniLibs.srcDirs = ['libs']
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
api fileTree(dir: 'libs', include: ['*.jar'])
|
|
api project(path: ':common')
|
|
|
|
implementation 'androidx.media:media:1.2.1'
|
|
implementation 'com.github.bumptech.glide:glide:4.9.0'
|
|
}
|