博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Android 项目打包成apk文件
阅读量:5128 次
发布时间:2019-06-13

本文共 1544 字,大约阅读时间需要 5 分钟。

首先,要利用Android SDK 自带的kdytool生成keystore文件:

keytool -genkey -alias android.keystore -keyalg RSA -validity 100000 -keystore android.keystore
参数意义:-validity主要是证书的有效期,写100000天;空格,退格键都算密码。

在DOS里面的过程:

(D:\Program Files\Java\jdk1.7.0_25\bin> keytool -genkey -alias android.keystore -keyalg RSA -validity 100000 -keystore android.keystore输入keystore密码: android您的名字与姓氏是什么?[Unknown]: sxl您的组织单位名称是什么?[Unknown]: xs您的组织名称是什么?[Unknown]: xs您所在的城市或区域名称是什么?[Unknown]: null您所在的州或省份名称是什么?[Unknown]: null该单位的两字母国家代码是什么[Unknown]: nullCN=sxl, OU=xs, O=xuesheng, L=null, ST=null, C=null 正确吗?[否] y输入
的主密码(如果和keystore密码相同,按回车):)
在Linux终端的过程
[liuaibin@centos6 ~]$ keytool -genkey -alias android.keystore -keyalg RSA -validity 100000 -keystore android.keystoreEnter keystore password:  Re-enter new password: What is your first and last name?  [Unknown]:  sxlWhat is the name of your organizational unit?  [Unknown]:  xsWhat is the name of your organization?  [Unknown]:  xsWhat is the name of your City or Locality?  [Unknown]:  nullWhat is the name of your State or Province?  [Unknown]:  nullWhat is the two-letter country code for this unit?  [Unknown]:  nullIs CN=sxl, OU=xs, O=xs, L=null, ST=null, C=null correct?  [no]:  yEnter key password for 
(RETURN if same as keystore password):

 

第二,Eclipse Android生成apk文件

1、选择要打包的项目,右键点击–>Androidtools–>ExportSignedApplicationPackage…

2、选择打包的项目

3、选择生成的Eclipse Android.keystore文件并输入密码

4、选择aliaskey并输入密码

5、最后选择生成androidapk文件的目录及文件名

6、最终生成的apk文件

转载于:https://www.cnblogs.com/sigmon/p/3748765.html

你可能感兴趣的文章
SQL Server 监控统计阻塞脚本信息
查看>>
分析linux进程模型
查看>>
iOS7 故事版创建tanbar
查看>>
Hibernate 的原生 SQL 查询
查看>>
PHP 环境搭建及zabbix安装遇到的一些坑.
查看>>
MYSQL常用函数(系统信息函数)
查看>>
class 模拟继承
查看>>
jquery的each()详细介绍
查看>>
简单说说装饰模式
查看>>
操作系统实验三进程调度
查看>>
冒泡排序
查看>>
板邓:php+mayql分页原理及案例
查看>>
BizTalk调用SAP系统RFC含多个参数以及DateTime类型参数
查看>>
数据分析的道与术
查看>>
2019.03.25 Ajax三级联动
查看>>
[开源]使用C# 对CPU卡基本操作封装
查看>>
NGUI3.5系列教程之 UILabel
查看>>
吴裕雄 Bootstrap 前端框架开发——Bootstrap 字体图标(Glyphicons):glyphicon glyphicon-zoom-out...
查看>>
jsp页面输出当前时间
查看>>
代码规范
查看>>