Upgrading deps. (#588)

This commit is contained in:
Dessalines 2023-12-13 17:53:40 -05:00 committed by GitHub
parent a4d7cb6758
commit 5f20a7c8b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 9 additions and 10 deletions

View File

@ -63,7 +63,7 @@ android {
compose true
}
composeOptions {
kotlinCompilerExtensionVersion = "1.5.4"
kotlinCompilerExtensionVersion = "1.5.6"
}
namespace 'com.dessalines.thumbkey'
}
@ -73,7 +73,7 @@ dependencies {
implementation "com.github.jeziellago:compose-markdown:0.3.5"
implementation "com.squareup.okhttp3:logging-interceptor:5.0.0-alpha.11"
implementation 'androidx.navigation:navigation-compose:2.7.5'
implementation 'androidx.navigation:navigation-compose:2.7.6'
implementation 'com.github.alorma:compose-settings-ui-m3:1.0.2'
// To use Kotlin annotation processing tool
@ -95,14 +95,14 @@ dependencies {
implementation 'androidx.compose.runtime:runtime-livedata:1.5.4'
implementation "androidx.lifecycle:lifecycle-runtime-compose:2.6.2"
implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.9.20'
implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.9.21'
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'androidx.compose.ui:ui:1.5.4'
implementation 'androidx.compose.material3:material3:1.1.2'
implementation 'androidx.compose.material:material-icons-extended:1.5.4'
implementation 'androidx.compose.material3:material3-window-size-class:1.1.2'
implementation 'androidx.compose.ui:ui-tooling:1.5.4'
implementation 'androidx.activity:activity-compose:1.8.1'
implementation 'androidx.activity:activity-compose:1.8.2'
implementation "com.louiscad.splitties:splitties-systemservices:3.0.0"
implementation "com.louiscad.splitties:splitties-views:3.0.0"

View File

@ -731,7 +731,7 @@ fun ancom(): Pair<ColorScheme, ColorScheme> {
val md_theme_dark_inverseSurface = Color(0xFFE0E0E0)
val md_theme_dark_inversePrimary = Color(0xFF404040)
val md_theme_dark_shadow = Color(0xFF000000)
val md_theme_dark_surfaceTint = Color(0x000000)
val md_theme_dark_surfaceTint = Color(0xFF000000)
val md_theme_dark_outlineVariant = Color(0xFF404040)
val md_theme_dark_scrim = Color(0xFF000000)

View File

@ -1,6 +1,6 @@
<vector android:autoMirrored="true"
android:height="300dp"
android:width="300dp"
android:height="200dp"
android:width="200dp"
android:viewportHeight="300"
android:viewportWidth="300"
xmlns:android="http://schemas.android.com/apk/res/android">

View File

@ -32,7 +32,6 @@
<string name="source_code">Kildekode</string>
<string name="source_code_subtitle">Tommeltast er libre open-source software, licenseret under GNU Affero General Public License v3.0</string>
<string name="look_and_feel">Udseende og tilpasning</string>
<string name="behavior"></string>
<string name="layouts">Tastaturer</string>
<string name="theme">Tema</string>
<string name="theme_color">Tema farve</string>

View File

@ -9,9 +9,9 @@ buildscript {
plugins {
id 'com.android.application' version '8.2.0' apply false
id 'com.android.library' version '8.2.0' apply false
id 'org.jetbrains.kotlin.android' version '1.9.20' apply false
id 'org.jetbrains.kotlin.android' version '1.9.21' apply false
id 'org.jmailen.kotlinter' version "4.1.0" apply false
id 'com.google.devtools.ksp' version "1.9.20-1.0.14" apply false
id 'com.google.devtools.ksp' version "1.9.21-1.0.15" apply false
}
subprojects {