2023-01-19 19:04:52 +00:00
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
|
|
|
|
android {
|
2023-05-04 05:26:03 +00:00
|
|
|
namespace 'com.flask.colorpicker'
|
2023-01-19 19:04:52 +00:00
|
|
|
|
|
|
|
defaultConfig {
|
2023-12-06 17:16:06 +00:00
|
|
|
compileSdk 34
|
|
|
|
minSdkVersion 21
|
|
|
|
targetSdkVersion 34
|
2023-01-19 19:04:52 +00:00
|
|
|
versionCode 17
|
|
|
|
versionName "0.0.15"
|
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
|
|
implementation 'androidx.appcompat:appcompat:1.1.0'
|
|
|
|
}
|