Skip to content

Instantly share code, notes, and snippets.

@PhompAng
Last active January 15, 2020 18:54
Show Gist options
  • Save PhompAng/b312ccdf784ade4ea0cc14e9ef57f43d to your computer and use it in GitHub Desktop.
Save PhompAng/b312ccdf784ade4ea0cc14e9ef57f43d to your computer and use it in GitHub Desktop.
PackageInfo get version name
fun getAppVersionName(): String? {
return try {
val packageInfo = context.packageManager.getPackageInfo(applicationContext.packageName, 0)
packageInfo.versionName
} catch (e: PackageManager.NameNotFoundException) {
throw RuntimeException("Could not get package name: $e")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment