Skip to content

Commit

Permalink
Compile SDK 35
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelbel committed Aug 8, 2024
1 parent 34b8bcf commit 64d2cff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ private val Context.packageInfo: PackageInfo
}

internal val Context.versionName: String
get() = packageInfo.versionName
get() = packageInfo.versionName.orEmpty()

internal val Context.versionCode: Long
get() = if (Build.VERSION.SDK_INT >= 28) packageInfo.longVersionCode else packageInfo.versionCode.toLong()
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[versions]
min-sdk = "23"
compile-sdk = "34"
compile-sdk = "35"
target-sdk = "34"
jdk = "17"
agp = "8.4.2"
Expand Down

0 comments on commit 64d2cff

Please sign in to comment.