2024-01-28 09:02:54 +00:00
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
|
|
|
|
android {
|
2025-02-07 10:33:49 +00:00
|
|
|
namespace 'com.flask.colorpicker'
|
|
|
|
compileSdk 34
|
2024-01-28 09:02:54 +00:00
|
|
|
defaultConfig {
|
|
|
|
minSdk 21
|
2025-02-07 10:33:49 +00:00
|
|
|
targetSdk 34
|
2024-01-28 09:02:54 +00:00
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation 'androidx.appcompat:appcompat:1.6.1'
|
|
|
|
implementation 'com.google.android.material:material:1.9.0'
|
|
|
|
}
|