Contents

Views 986 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print

How to Get App Version Name in Kotlin Android

Sometimes we have to get the current App version in Android to send it to our server or to show App update popup. You can use the following method to get the App Version Name in Kotlin Android.

fun GetAppVersion(context: Context): String {
var version = ""
try {
val pInfo = context.packageManager.getPackageInfo(context.packageName, 0)
version = pInfo.versionName
} catch (e: PackageManager.NameNotFoundException) {
e.printStackTrace()
}

return version
}

This is how you can call this method.

val versionName = GetAppVersion(this)

It will return the App version name in the form of “1.0” etc.



[출처] https://handyopinion.com/how-to-get-app-version-name-in-kotlin-android/



?

List of Articles
No. Category Subject Author Date Views
21 System/OS HTTP 프로토콜 (브라우저와 웹서버 간의 통신) hooni 2003.04.23 48355
20 Develop How to Test SMTP AUTH using Telnet hooni 2018.04.05 1589
19 System/OS How to Setup an Email Server on CentOS 7 hooni 2018.04.05 3034
18 System/OS How to Install and Use wget on Mac file hooni 2020.09.03 1538
17 Etc How to completely Uninstall Coda hooni 2017.10.24 2546
16 Etc GSM에서 음성이 실리는 과정 요약.. hooni 2013.04.23 17587
15 Develop GPL, AGPL, MPL,.. 한눈에 보는 오픈소스SW 라이선스 file hooni 2014.10.14 1265
14 Develop git 브런치 배우기 (링크) hooni 2013.07.09 20701
13 Develop GCM 사용하기 3 (JSP로 GCM 푸시 서버 만들기) 4 file hooni 2013.07.06 25425
12 Develop GCM 사용하기 2 (단말에 GCM 구현하기) file hooni 2013.07.06 23411
11 System/OS Enable the Develop Menu in Safari file hooni 2017.02.07 1336
10 System/OS Enable Safari Hidden Debug Menu in Mac OS X file hooni 2017.02.07 1730
Board Pagination Prev 1 ... 89 90 91 92 93 94 95 96 97 98 Next
/ 98