• Android 项目打包成apk文件


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

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

    在DOS里面的过程:

    (D:Program FilesJavajdk1.7.0_25in> 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]: null
    CN=sxl, OU=xs, O=xuesheng, L=null, ST=null, C=null 正确吗?
    [否] y
    输入<android.keystore>的主密码
    (如果和keystore密码相同,按回车):)
    在Linux终端的过程
    [liuaibin@centos6 ~]$ keytool -genkey -alias android.keystore -keyalg RSA -validity 100000 -keystore android.keystore
    Enter keystore password:  
    Re-enter new password: 
    What is your first and last name?
      [Unknown]:  sxl
    What is the name of your organizational unit?
      [Unknown]:  xs
    What is the name of your organization?
      [Unknown]:  xs
    What is the name of your City or Locality?
      [Unknown]:  null
    What is the name of your State or Province?
      [Unknown]:  null
    What is the two-letter country code for this unit?
      [Unknown]:  null
    Is CN=sxl, OU=xs, O=xs, L=null, ST=null, C=null correct?
      [no]:  y
    
    Enter key password for <android.keystore>
        (RETURN if same as keystore password):

    第二,Eclipse Android生成apk文件

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

    2、选择打包的项目

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

    4、选择aliaskey并输入密码

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

    6、最终生成的apk文件

  • 相关阅读:
    Microsoft .NET 框架资源基础(摘自msdn)
    cache的应用
    cache应用(asp.net 2.0 + sqlserver2005 数据依赖缓存 )
    c#遍历查找指定文件
    各浏览器目前对CSS3、HTML5的支持
    一步步构建大型网站架构
    c#连接sqlserver数据库
    C#中如何判断一个字符是汉字
    c#执行DOC命令
    VS2010快捷键
  • 原文地址:https://www.cnblogs.com/sigmon/p/3748765.html
Copyright © 2020-2023  润新知