Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ integrate and use `KvColorPicker-Android` library.
* `KvColorPalette-Android`: Generate a color palette based on a single input color. Using color alpha/saturation/lightness(brightness)/mat-colors
* `KvColorPalette-Android`: Create a complete theme color set, including primary, secondary, background, and surface colors.
* `KvColorPicker-Android`: Integration and usage of the library
* RGB-A Picker - Picker color using RED, GREEN, BLUE and Alpha variation of a color
* GRID Picker - Pick color using the pre-defined color grid
* HSL-A Picker - Pick color using Hue, Saturation, Lightness and Alpha properties of a color
* BLEND Picker - Pick color by blending selected two colors.

# License
`KvColorPalette - Android - App` is licensed under the [MIT License](https://github.com/KvColorPalette/KvColorPalette-Android-App/blob/main/LICENSE).
Expand Down
2 changes: 1 addition & 1 deletion gradle/version-catalog/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ composeMaterial = "1.7.8"
composeNavigation = "2.8.8"
jetpackDatastoreVersion = "1.1.3"
kvColorPalette = "3.2.0"
kvColorPicker = "2.2.0"
kvColorPicker = "3.0.0"

kotlinxSerializationVersion = "1.4.0"
kotlinxCoroutinesVersion = "1.7.3"
Expand Down
8 changes: 6 additions & 2 deletions ui-app/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import org.jetbrains.kotlin.gradle.dsl.JvmTarget

plugins {
alias(libs.plugins.android.application)
alias(libs.plugins.kotlin.android)
Expand Down Expand Up @@ -38,8 +40,10 @@ android {
sourceCompatibility = javaVersion
targetCompatibility = javaVersion
}
kotlinOptions {
jvmTarget = libs.versions.jvmVersion.get()
kotlin {
compilerOptions {
jvmTarget = JvmTarget.fromTarget(libs.versions.jvmVersion.get())
}
}
buildFeatures {
compose = true
Expand Down