mirror of
https://github.com/Helium314/HeliBoard.git
synced 2025-05-31 20:02:12 +00:00
Settings upgrade (#1325)
Re-implement most of the settings in compose, searchable Languages & Layouts, Colors, and Personal Dictionary still missing, will be done later
This commit is contained in:
parent
679754bb2d
commit
e845e38e42
52 changed files with 4708 additions and 24 deletions
|
@ -2,6 +2,7 @@ plugins {
|
|||
id("com.android.application")
|
||||
kotlin("android")
|
||||
kotlin("plugin.serialization") version "2.0.21"
|
||||
kotlin("plugin.compose") version "2.0.0"
|
||||
}
|
||||
|
||||
android {
|
||||
|
@ -49,6 +50,7 @@ android {
|
|||
buildFeatures {
|
||||
viewBinding = true
|
||||
buildConfig = true
|
||||
compose = true
|
||||
}
|
||||
|
||||
externalNativeBuild {
|
||||
|
@ -105,6 +107,16 @@ dependencies {
|
|||
// kotlin
|
||||
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.0")
|
||||
|
||||
// compose
|
||||
coreLibraryDesugaring("com.android.tools:desugar_jdk_libs:2.1.4")
|
||||
implementation(platform("androidx.compose:compose-bom:2024.10.01"))
|
||||
implementation("androidx.compose.material3:material3")
|
||||
implementation("androidx.compose.ui:ui-tooling-preview")
|
||||
debugImplementation("androidx.compose.ui:ui-tooling")
|
||||
implementation("androidx.navigation:navigation-compose:2.8.5")
|
||||
implementation("sh.calvin.reorderable:reorderable:2.4.2") // for easier re-ordering
|
||||
implementation("com.github.skydoves:colorpicker-compose:1.1.2") // for user-defined colors
|
||||
|
||||
// color picker for user-defined colors
|
||||
implementation("com.github.martin-stone:hsv-alpha-color-picker-android:3.1.0")
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue