Contents

Views 2810 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
1093 Develop [js] 키보드 아스키코드(ASCII) 코드보기 hooni 2003.04.23 33411
1092 System/OS [linux] Oracle8.1.6, Mysql+PHP+Zend Optimizer+APACHE+Tomcat(jsp,servlet)+IMAP+gd hooni 2003.04.23 33287
1091 System/OS [linux] 특정 문자열 포함된 파일 찾는 명령어 hooni 2013.10.16 33084
1090 Etc 성문 종합 영어 정리된 pdf 파일 file hooni 2013.06.25 33017
1089 Develop [ios] 소소한 팁 (Rect,Point,Path,URL 등) hooni 2013.08.08 32640
1088 Develop [python] DJI Tello 드론 코딩 (프로그래밍) 58 file hooni 2018.03.04 32599
1087 Develop [ios] 개발 기초 가이드 링크.. hooni 2013.04.23 32324
1086 Etc 영작 연습을 위한 실용영어 문장 1001개 (1~500) hooni 2013.06.21 32019
1085 Develop [js] jQuery 관련 문서 ㅎㅎ file hooni 2013.04.23 32001
1084 Develop 서기의 PHP 동영상 강의(싱싱해) hooni 2013.05.15 31891
1083 System/OS [sql] insert into select 사용하기 hooni 2013.04.23 31854
1082 Develop [ios] 테이블뷰셀/뷰에 배경 패턴 넣기.. hooni 2013.04.23 31179
Board Pagination Prev 1 ... 3 4 5 6 7 8 9 10 11 12 ... 99 Next
/ 99