반응형
앱 버전정보
override fun getCurrentVersionCode(): Int{
var versionCode = 0
try {
val pInfo = this.packageManager.getPackageInfo(packageName, 0)
if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.P) {
versionCode = pInfo.longVersionCode.toInt()
}else {
versionCode = pInfo.versionCode
}
} catch (e: PackageManager.NameNotFoundException) {
e.printStackTrace()
}
return versionCode
}
반응형
'Android > Android 일반' 카테고리의 다른 글
[Anotation] @RequiresApi, @TargetApi (0) | 2019.04.03 |
---|---|
플레이스토어 연결하기 (0) | 2019.04.01 |
xml 국가별 strings.xml 사용 (0) | 2019.03.28 |
뷰(View)가 그려지는 과정 (0) | 2019.03.27 |
RecyclerView 클릭 시 Ripple넣기 (0) | 2019.03.27 |