35 lines
705 B
Groovy
35 lines
705 B
Groovy
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
|
|
namespace 'group.pals.android.lib.ui.filechooser'
|
|
|
|
compileSdkVersion 35
|
|
|
|
defaultConfig {
|
|
minSdkVersion 16
|
|
targetSdkVersion 35
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-project.txt'
|
|
debuggable false
|
|
}
|
|
}
|
|
|
|
buildFeatures {
|
|
buildConfig true
|
|
}
|
|
compileOptions {
|
|
targetCompatibility 11
|
|
sourceCompatibility 11
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
|
implementation "com.google.android.material:material:1.12.0"
|
|
}
|