Skip to content

Commit

Permalink
Debug Release 3.9.2 (392007)
Browse files Browse the repository at this point in the history
🗂️ Others Changes:
• Fix Type Mismatch
• Update versionCode to 392007 (3.9.2)
  • Loading branch information
AkosPaha01 authored Apr 23, 2024
2 parents 4b95fe8 + fdc0099 commit 8928b7f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ android {
applicationId = "de.dertyp7214.rboardthememanager"
minSdk = 31
targetSdk = 34
versionCode = 392006
versionCode = 392007
versionName = "3.9.2"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ object GboardUtils {
@Suppress("DEPRECATION")
fun getGboardVersion(context: Context): String {
return try {
if (Build.VERSION.SDK_INT >= 33) {
(if (Build.VERSION.SDK_INT >= 33) {
context.packageManager.getPackageInfo(
GBOARD_PACKAGE_NAME, PackageManager.PackageInfoFlags.of(
GET_META_DATA.toLong()
Expand All @@ -32,7 +32,7 @@ object GboardUtils {
GBOARD_PACKAGE_NAME,
GET_META_DATA
).versionName
}
}) as String
} catch (error: Exception) {
Logger.log(
Logger.Companion.Type.ERROR,
Expand Down

0 comments on commit 8928b7f

Please sign in to comment.