Android development-how the app is released

Article Directory

APK

1. Definition of
APK APK (Android Package) is the installation package of Android, and the software can be installed by executing the APK file.
2. APK classification
①debug
version②release version

说明:
The release version of the apk will be smaller than the debug version of the apk.

AS packaging method

1. Packaging without using the .jks file.
First select Build->Generate Signed Bundle/APK to
Insert picture description here
select APK, and then click Next.
Insert picture description here
The following interface appears. The key cannot exist for the first time, so select Create new
Insert picture description here
to fill in the content of the following interface.
Insert picture description here
Choose whether Remember the password, and then click OK to
Insert picture description here
select the generated version, and click Finish to
Insert picture description here
generate the
Insert picture description here
generated file
Insert picture description here
. 2. Packaging using the .jks file
The operation process here is basically the same as the process without using the .jks file. The main operation difference is that this is to choose Choose existing instead of Create new, and then enter the corresponding password, the subsequent process is the same.

Guess you like

Origin blog.csdn.net/qq_43279579/article/details/114694984