Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

actions: less warnings is more (fixes #3775) #3782

Merged
merged 9 commits into from
Jul 9, 2024
Merged
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,21 @@ package org.ole.planet.myplanet.utilities

import android.content.Context
import android.content.pm.PackageManager
import android.os.Build
import android.provider.Settings
import androidx.core.content.pm.PackageInfoCompat.getLongVersionCode

object VersionUtils {
@JvmStatic
fun getVersionCode(context: Context): Int {
try {
val pInfo = context.packageManager.getPackageInfo(context.packageName, 0)
return pInfo.versionCode
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.P) {
return getLongVersionCode(pInfo).toInt()
} else {
@Suppress("DEPRECATION")
return pInfo.versionCode
}
} catch (e: PackageManager.NameNotFoundException) {
e.printStackTrace()
}
Expand Down