34 lines
860 B
Groovy
34 lines
860 B
Groovy
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
compileSdkVersion 34
|
|
|
|
defaultConfig {
|
|
minSdkVersion 21
|
|
targetSdkVersion 34
|
|
|
|
// testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
namespace 'com.lqr.imagepicker'
|
|
lint {
|
|
abortOnError false
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
// implementation libs.appcompat
|
|
// implementation libs.library
|
|
// implementation 'androidx.appcompat:appcompat:1.7.0' // 根据需要的版本
|
|
implementation 'com.github.bumptech.glide:glide:4.15.1'
|
|
implementation 'androidx.drawerlayout:drawerlayout:1.1.1'
|
|
implementation project(':photoview')
|
|
implementation libs.material
|
|
}
|