Contents

조회 수 2806 댓글 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. [ios] 최상위 ViewController 가져오기

    Date2015.10.12 CategoryDevelop Byhooni Views2119
    Read More
  2. [mac] 패키지 매니저, MacPort

    Date2015.01.03 CategorySystem/OS Byhooni Views2137
    Read More
  3. [c#] 툴바 최근 버전(IE6, IE7 두가지 버전)

    Date2013.04.23 CategoryDevelop Byhooni Views2138
    Read More
  4. [ios] APNS에 사용할 인증서 만들기 (KeyChain에 있는 인증서 Export)

    Date2015.01.03 CategoryDevelop Byhooni Views2141
    Read More
  5. [ios] Xcode의 디버그 모드에서 콜스택

    Date2015.01.03 CategoryDevelop Byhooni Views2172
    Read More
  6. [ios] 로컬에 있는 JS 파일 웹뷰에서 동적으로 실행하기

    Date2015.02.10 CategoryDevelop Byhooni Views2176
    Read More
  7. [js] AngularJS 란?

    Date2015.11.26 CategoryDevelop Byhooni Views2177
    Read More
  8. [ios] 로컬에 있는 html 실행하기

    Date2015.02.10 CategoryDevelop Byhooni Views2181
    Read More
  9. [ios] 아이폰 앱 이름 및 버전 정보

    Date2015.03.24 CategoryDevelop Byhooni Views2194
    Read More
  10. [svn] Can't convert string from native encoding to 'UTF-8' 메시지가 나오는 경우

    Date2014.12.18 CategorySystem/OS Byhooni Views2195
    Read More
  11. [c#] BHO 한샘툴바랑 동현툴바..

    Date2013.04.23 CategoryDevelop Byhooni Views2208
    Read More
  12. [ios] StoryBoard(xib) 없이 프로젝트 만들기

    Date2015.02.12 CategoryDevelop Byhooni Views2228
    Read More
Board Pagination Prev 1 2 3 4 5 6 7 8 9 10 ... 99 Next
/ 99