add a separate fragment for setting user-defined colors

issues:
when using day/night mode, active keyboard is shown in preview, not the acually modified varian
reloading / updating the preview is either slow or will not show the keyboard again
This commit is contained in:
Helium314 2023-09-12 14:21:40 +02:00
parent d33650586b
commit b18b7dc820
20 changed files with 383 additions and 206 deletions

View file

@ -27,6 +27,9 @@ android {
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro', 'src/main/proguard.flags'
applicationIdSuffix ".debug"
}
buildFeatures {
viewBinding true
}
archivesBaseName = "openboard_" + defaultConfig.versionName
}
@ -60,5 +63,6 @@ dependencies {
implementation 'androidx.preference:preference:1.2.1' // includes appcompat
implementation 'androidx.recyclerview:recyclerview:1.3.1'
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'com.github.skydoves:colorpickerview:2.2.4'
testImplementation 'junit:junit:4.13.2'
}