0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

AndroidStudio apk 만들기

Last updated at Posted at 2019-06-30

AndroidStudio 3.4.1

서명 키 만들기

먼저 서명 키를 보관할 디렉토리를 생성합니다.
아래 표시된 부분에서 우클릭 - 디렉토리 생성.
appkey.PNG

Build - Generate Signed Bundle / APK
Android App Bundle방식도 상관없지만 .apk가 아닌 .aab생성이므로 실기에 곧바로 테스트 할수 없습니다.
generate.PNG

Create new.. -> Key store path
appkey_createnew.PNG

위에서 생성한 디렉토리로 맞추고 File name 입력 후 OK
appkey_filename.PNG

Key store Password, Alias Password를 입력하고, Validity는 50년쯤으로 설정했습니다.
appkeyfinal.PNG

패스워드를 입력합니다.
appkeynext.PNG

빌드!
build.PNG

apk 확인
apk.PNG

서명 키 등록 : 서명 키 경로와 패스워드를 입력

gradle.properties에서 주석을 풀고 경로 및 패스워드를 입력합니다.

gradle.properties
# uncomment it and fill in sign information for release mode
RELEASE_STORE_FILE=D\:\\Development\\gonefashion_android\\proj.android\\appkey\\gonefashion.jks
RELEASE_STORE_PASSWORD=xxxx
RELEASE_KEY_ALIAS=key0
RELEASE_KEY_PASSWORD=xxxx
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?