Views 817 Votes 0 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
777 Develop [js] AngularJS 란? file hooni 2015.11.26 885
776 Develop [ios] APNS에 사용할 인증서 만들기 (KeyChain에 있는 인증서 Export) file hooni 2015.01.03 891
775 Develop [ios] UIWebView에서 로컬에 있는 html 파일 불러오기 hooni 2015.02.10 891
774 Develop [ios] iOS 8 개발자가 우선 알아야 할 3가지 file hooni 2014.10.02 900
773 Develop [js] 좋은 강연자료 & UI 자료 hooni 2014.10.06 907
772 Develop [android] 딜레이를 구현하기 위한 꼼수 hooni 2016.11.24 934
771 Develop [ubuntu] 우분투 18.04에 PHP5 설치하기 hooni 2020.11.14 938
770 Develop [ios] Xcode에서 특정 파일만 ARC 따로 설정하는 방법 file hooni 2017.03.29 944
769 Develop [ios] 로컬에 있는 JS 파일 웹뷰에서 동적으로 실행하기 hooni 2015.02.10 949
768 Develop [ios] 상위 ViewController 가져오기 hooni 2015.10.12 953
767 Develop [ios] 오브젝티브C→스위프트, 코드 변환 손쉽게 file hooni 2015.08.07 957
766 Develop [ios] APNS, Remote Push 수신 시점에서 앱의 3가지 실행 상태 hooni 2018.10.19 965
765 Develop '2014 모바일 개발 트렌드' 발표자료입니다. file hooni 2014.10.02 978
764 Develop [ios] Xcode의 디버그 모드에서 콜스택 file hooni 2015.01.03 999
763 Develop [js] 스크롤 이벤트 막기 hooni 2015.04.14 1007
762 Develop [c] FSN 온라인 코딩 테스트 (Sorting, Binary Search) file hooni 2015.06.26 1011
Board Pagination Prev 1 3 4 5 6 7 ... 53 Next
/ 53