6.6.2 - Alpha5 - 本地化 Color Picker 库; 主题色设置页面新旧布局分离 (初步)

This commit is contained in:
SuperMonster003
2025-03-25 22:54:40 +08:00
parent 1b3ff3bb5a
commit 124dea0c0e
284 changed files with 6919 additions and 537 deletions

View File

@@ -0,0 +1,41 @@
plugins {
id 'com.android.library'
id 'kotlin-android'
}
android {
namespace = 'com.jaredrummler.android.colorpicker'
compileSdk = project.ext.compileSdk
resourcePrefix "cpv_"
defaultConfig {
minSdk = project.ext.minSdk
targetSdk = project.ext.targetSdk
versionName '1.1.0'
}
compileOptions {
sourceCompatibility = JavaVersion.toVersion(project.ext.javaVersion)
targetCompatibility = JavaVersion.toVersion(project.ext.javaVersion)
}
kotlinOptions {
jvmTarget = project.ext.javaVersion
}
lintOptions {
abortOnError false
}
}
repositories {
mavenCentral()
google()
}
dependencies {
implementation 'androidx.appcompat:appcompat:1.7.0'
implementation 'androidx.preference:preference-ktx:1.2.1'
}