반응형
AndroidManifest.xml에서 앱의 버전명을 관리할 수 있다.
1) VersionName="String"
- 사용자에게 보여주는 값으로 설정 - 앱 정보에서 확인할 수 있다.
- 형식은 <major>.<minor>.<point>로 표현한다. ex) 1.0.1
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.facebook.witai.voicedemo"
android:versionName="1.0.0">
2) VersionCode=Integer
- 앱의 다운그레이드, 업그레이드를 위해 사용
- 사용자에게 보여지지 않는다.
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.facebook.witai.voicedemo"
android:versionCode=1.0.0>
반응형
'Android > 기본기능' 카테고리의 다른 글
[Android] AOSP 소스 다운로드 및 Emulator 빌드방법 (0) | 2023.07.12 |
---|---|
[Android] ADB를 윈도우10 환경변수로 등록하기 (0) | 2023.05.24 |
[Android] 딜레이 후에 실행하고 싶을 때 - Handler postDelayed 사용법 (0) | 2023.02.20 |
[Android] Android platform (API 30)에서 빌드가 되는 Test app 기본구조 (0) | 2023.02.16 |
[Android] 안드로이드용 간단한 테스트앱 UI 구성 (0) | 2023.02.13 |
댓글