- 将Gradle插件版本升级到8.2.0 - 将compileSdk和targetSdk版本升级到34 - 更新Kotlin插件版本 - 优化部分代码结构 - 更新依赖库版本
22 lines
486 B
Groovy
22 lines
486 B
Groovy
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
namespace 'com.flask.colorpicker'
|
|
compileSdk 34
|
|
defaultConfig {
|
|
minSdk 21
|
|
targetSdk 34
|
|
}
|
|
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'
|
|
}
|