Files
AndroidJava/image-picker/sample/build.gradle
T
coco 7846a45f2c a
2026-07-03 15:47:27 +08:00

35 lines
732 B
Groovy

apply plugin: 'com.android.application'
android {
compileSdkVersion 36
defaultConfig {
applicationId "com.shaubert.imagepickersample"
minSdkVersion 21
targetSdkVersion 36
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
publishing {
singleVariant("release") {
withSourcesJar()
// withJavadocJar()
}
}
namespace "com.shaubert.imagepickersample"
}
dependencies {
implementation 'androidx.appcompat:appcompat:1.7.1'
implementation project(':glide-ext')
}