Contents

조회 수 2809 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

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/



?

  1. 도메인 관련 솔루션 분석할 거.. ㅋㄷ

    Date2013.04.23 CategoryDevelop Byhooni Views7975
    Read More
  2. [js] 윤동이가 만든 영어 학습(?) 프로그램

    Date2013.04.23 CategoryDevelop Byhooni Views7974
    Read More
  3. [php] 빔 프로젝터 예약 프로그램.. ㅋㅋ

    Date2013.04.23 CategoryDevelop Byhooni Views7974
    Read More
  4. [c] 프로세스간의 통신(파이프)

    Date2003.04.23 CategoryDevelop Byhooni Views7973
    Read More
  5. [php] 논문 관리 프로그램.. ㅋㅋ

    Date2013.04.23 CategoryDevelop Byhooni Views7973
    Read More
  6. [js] 숫자만 입력하게 하는 자바스크립트

    Date2013.04.23 CategoryDevelop Byhooni Views7969
    Read More
  7. [c++] 템플릿(Template) 예제 소스..

    Date2013.04.23 CategoryDevelop Byhooni Views7969
    Read More
  8. 라이브러리에 대한 설명 (static & dynamic library)

    Date2013.04.23 CategoryDevelop Byhooni Views7966
    Read More
  9. [web] 웹 연동 프로그램 모음..

    Date2013.04.23 CategoryDevelop Byhooni Views7961
    Read More
  10. [c++] template 사용예

    Date2003.04.23 CategoryDevelop Byhooni Views7959
    Read More
  11. [c++] mfc로 만든 인테리어 수납 시스템(2D기반 설계)

    Date2013.04.23 CategoryDevelop Byhooni Views7959
    Read More
  12. [js] 양원님이 공유해 주신 유료(5$란다ㅋ) 자료 ㅋㅋ

    Date2013.04.23 CategoryDevelop Byhooni Views7948
    Read More
Board Pagination Prev 1 ... 45 46 47 48 49 50 51 52 53 54 ... 71 Next
/ 71