Files
zhini_im/imagepicker/build.gradle
rw0067680 c01808ac21 first commit
Change-Id: Ib7c2ab10a2562044fcaf9879388a6cbc1db6ac61
2025-12-23 10:00:49 +08:00

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
}