Skip to content

Commit

Permalink
Upgrading compile sdk. (#1175)
Browse files Browse the repository at this point in the history
* Upgrading compile sdk.

* Upgrading ksp.

* Revert "Upgrading ksp."

This reverts commit c588dc7.
  • Loading branch information
dessalines authored Dec 5, 2024
1 parent 26aab7d commit 266f05f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ plugins {

android {
buildToolsVersion = "34.0.0"
compileSdk = 34
compileSdk = 35

defaultConfig {
applicationId = "com.dessalines.thumbkey"
minSdk = 21
targetSdk = 34
targetSdk = 35
versionCode = 124
versionName = "4.0.6"

Expand Down Expand Up @@ -94,7 +94,7 @@ dependencies {
implementation("androidx.compose.material:material-icons-extended-desktop:1.7.5")
implementation("androidx.compose.material3:material3-window-size-class")
implementation("androidx.compose.ui:ui-tooling")
implementation("androidx.compose.runtime:runtime-livedata")
implementation("androidx.compose.runtime:runtime-livedata:1.7.5")

// Activities
implementation("androidx.activity:activity-compose:1.9.3")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ fun AboutScreen(navController: NavController) {
ProvidePreferenceTheme {
Preference(
title = { Text(stringResource(R.string.whats_new)) },
summary = { Text(stringResource(R.string.version, version)) },
summary = { Text(stringResource(R.string.version, version.orEmpty())) },
icon = {
Icon(
imageVector = Icons.Outlined.NewReleases,
Expand Down

0 comments on commit 266f05f

Please sign in to comment.