FairEmail/colorpicker/build.gradle

26 lines
507 B
Groovy
Raw Normal View History

2023-01-19 19:04:52 +00:00
apply plugin: 'com.android.library'
android {
compileSdkVersion 29
buildToolsVersion "29.0.0"
2023-05-04 05:26:03 +00:00
namespace 'com.flask.colorpicker'
2023-01-19 19:04:52 +00:00
defaultConfig {
minSdkVersion 14
targetSdkVersion 29
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'
}