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') }