Skip to content

Commit

Permalink
Build: Fix build by updating compile and target SDK
Browse files Browse the repository at this point in the history
  • Loading branch information
zhanghai committed Nov 2, 2024
1 parent 0f3d85d commit fc686a8
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 @@ -24,13 +24,13 @@ plugins {

android {
namespace = "me.zhanghai.android.untracker"
buildToolsVersion = "34.0.0"
compileSdk = 34
buildToolsVersion = "35.0.0"
compileSdk = 35

defaultConfig {
applicationId = "me.zhanghai.android.untracker"
minSdk = 21
targetSdk = 34
targetSdk = 35
versionCode = 5
versionName = "1.0.4"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ fun AboutPane(contentPadding: PaddingValues, navigateToLicensesScreen: () -> Uni
val version =
stringResource(
R.string.main_about_version_summary,
packageInfo.versionName,
packageInfo.versionName.orEmpty(),
packageInfo.versionCode
)
val clipboardManager = LocalClipboardManager.current
Expand Down

0 comments on commit fc686a8

Please sign in to comment.