[前言]
我們平時在開發android應用程式的過程中,一般都是利用eclipse整合式開發環境,所以產生的apk有debug版本的簽名許可權,但是如果我們想要發布一款應用程式,並且希望在真機上啟動並執行話,就需要進行簽名。
[工具]
Java開發環境中的Keytool 和 Jarsigner,注意配置好環境路徑,輸入命令後有如下提示資訊:
C:\Documents and Settings\F1034740\案頭\部落格文章>Keytool
keytool 用法:
-certreq [-v] [-protected]
[-alias <別名>] [-sigalg <簽章演算法>]
[-file <憑證簽章要求檔案>] [-keypass <主密碼>]
[-keystore <金鑰儲存庫>] [-storepass <儲存庫密碼>]
[-storetype <儲存庫類型>] [-providername <名稱>]
[-providerclass <提供者類別名稱> [-providerarg <引數>]] ...
[-providerpath <路徑清單>]
。。。。。。
C:\Documents and Settings\F1034740\案頭\部落格文章>Jarsigner
Usage: jarsigner [options] jar-file alias
jarsigner -verify [options] jar-file
[-keystore <url>] keystore location
[-storepass <password>] password for keystore integrity
[-storetype <type>] keystore type
[-keypass <password>] password for private key (if different)
[-sigfile <file>] name of .SF/.DSA file
。。。。。。
[簽名檔案的製作]
下面我們來製作一個名稱為carey.keystore(產生並儲存在當前操作目錄下),密碼為password(密碼在輸入的過程中不回顯)的keystore簽名檔案,接下來就會用它來給我們自己的apk簽名
C:\Documents and Settings\F1034740\案頭\部落格文章>keytool -genkey -alias carey.k
ystore -keyalg RSA -validity 20000 -keystore carey.keystore
輸入 keystore 密碼:<password>
重新輸入新密碼: <password>
您的名字與姓氏為何?
[Unknown]: carey zhou
您的編制單位名稱為何?
[Unknown]: foxconn
您的組織名稱為何?
[Unknown]: it
您所在的城市或地區名稱為何?
[Unknown]: shenzhen
您所在的州及省份名稱為何?
[Unknown]: guangdong
該單位的二字國碼為何
[Unknown]: cn
CN=carey zhou, OU=foxconn, O=it, L=shenzhen, ST=guangdong, C=cn 正確嗎?
[否]: Y
輸入 <carey.keystore> 的主密碼
(RETURN 如果和 keystore 密碼相同):<password>
重新輸入新密碼: <password>
[簽名過程]
下面我們來給一個未簽名的apk(HomeIP2-unsigned.apk)進行簽名,產生新的apk(HomeIP2-signed.apk)
C:\Documents and Settings\F1034740\案頭\部落格文章>jarsigner -verbose -keystore carey.keystore -signedjar HomeIP2-signed.apk HomeIP2-unsigned.apk carey.keystore
Enter Passphrase for keystore: <password>
adding: META-INF/MANIFEST.MF
adding: META-INF/CAREY_KE.SF
adding: META-INF/CAREY_KE.RSA
signing: res/anim/fade_in.xml
signing: res/anim/fade_out.xml
signing: res/anim/fadeout.xml
signing: res/anim/grid_entry.xml
signing: res/anim/grid_exit.xml
signing: res/anim/hide_applications.xml
signing: res/anim/noneshow.xml
signing: res/anim/show.xml
signing: res/anim/show_applications.xml
signing: res/color/bright_text_dark_focused.xml
signing: res/color/listtextcolor.xml
signing: res/drawable/apparrow.xml
signing: res/drawable/application_background.9.png
signing: res/drawable/button.xml
。。。。。。
[總結]
以上就是製作簽名檔案和給apk簽名的過程,詳細的情況請參考android官方開發文檔 http://developer.android.com/guide/publishing/app-signing.html