现在的位置: 首页 > 综合 > 正文

Android 命令生成签名keystore、ant编译打包流程

2018年02月12日 ⁄ 综合 ⁄ 共 994字 ⁄ 字号 评论关闭

Android 命令生成签名keystore、ant编译打包流程,有需要的朋友可以参考下。


  • 制作签名文件keystore

keytool -genkey -alias android.keystore -keyalg RSA -validity 20000 -keystore android.keystore


根据提示输入信息

Enter keystore password:

Re-enter new password: 

What is your first and last name?

[Unknown]: 

What is the name of your organizational unit?

[Unknown]: 

What is the name of your organization?

[Unknown]: 

What is the name of your City or Locality?

[Unknown]: 

What is the name of your State or Province?

[Unknown]: 

What is the two-letter country code for this unit?

[Unknown]: 86

Is CN=, OU=, O=, L=, ST=, C= correct?

[no]: yes


Enter key password for <sandroid.keystore>

(RETURN if same as keystore password): 

Re-enter new password:


  • 生成build.xml与ant.properties

android update project .

或者

android update project -p . -n ProjectName -t android-18



  • 编写ant.properties

application-package=com.company.package
#sign or not
has.keystore=true
#password
has.password=true
#key
key.store=android.keystore
key.alias=android.keystore
#password
key.store.password=my_password
key.alias.password=my_password


  • 编译

ant release

转自:http://www.aichengxu.com/article/Java/28199_2.html

抱歉!评论已关闭.