android– 如何使用Cordova命令行界面创建签名的APK文件?

android– 如何使用Cordova命令行界面创建签名的APK文件?,第1张

概述我做了一个名为checkStatus的示例应用程序.现在我想创建一个签名的APK文件.所以我可以将它安装在不同的设备上进行测试.为此,我用Google搜索并找到了这个documentation.根据文档,我切换到我的项目目录并运行以下命令:keytool-genkey-v-keystorekey-name.keystore-aliasali

我做了一个名为checkStatus的示例应用程序.现在我想创建一个签名的APK文件.所以我可以将它安装在不同的设备上进行测试.

为此,我用Google搜索并找到了这个documentation.

根据文档,我切换到我的项目目录并运行以下命令:

keytool -genkey -v -keystore key-name.keystore -alias alias-name -keyalg RSA -keysize 2048 -valIDity 10000

运行上面的命令后,我在projectRoot / key-name.keystore中得到了一个名为key-name.keystore的文件.

然后我将该文件复制粘贴到projectRoot / platforms / androID / key-name.keystore中.

之后,我创建了一个名为ant.propertIEs的文件,并将其保存在projectRoot / platforms / androID中.

我在文件中写了以下代码:

key.store=projectRoot/key-name.keystorekey.alias=myApp

之后,我运行以下命令来发布

Cordova builds androID --release

它抛出以下错误:

 /home/projectRoot/platforms/androID/cordova/node_modules/q/q.Js:126                throw e;                      ^Error code 1 for command: ant with args: release,-f,/home/projectRoot/platforms/androID/build.xml,-Dout.dir=ant-build,-Dgen.absolute.dir=ant-gen Error: /home/projectRoot/platforms/androID/cordova/build: Command Failed with exit code 8at ChildProcess.whenDone (/usr/lib/node_modules/cordova/node_modules/cordova-lib/src/cordova/superspawn.Js:135:23)at ChildProcess.EventEmitter.emit (events.Js:98:17)at maybeClose (child_process.Js:753:16)at Process.ChildProcess._handle.onexit (child_process.Js:820:5)

所以这一次,我修改了ant.propertIEs文件中的key.store值,如下所示.

 key.store=/home/projectRoot/platforms/androID/key-name.keystore

再一次,我运行了cordova build androID –release命令.它会抛出同样的错误.

谁能告诉我我做错了什么?

解决方法:

步骤1:

D:\projects\Phonegap\Example> cordova plugin rm org.apache.cordova.console --save

添加–save,以便从config.xml文件中删除插件.

第2步:

要为AndroID生成发布版本,我们首先需要对在platforms / androID中找到的AndroIDManifest.xml文件进行一些小改动.编辑文件并更改行:

<application androID:deBUGgable="true" androID:harDWareAccelerated="true" androID:icon="@drawable/icon" androID:label="@string/app_name">

并将androID:deBUGgable更改为false:

<application androID:deBUGgable="false" androID:harDWareAccelerated="true" androID:icon="@drawable/icon" androID:label="@string/app_name">

从cordova 6.2.0开始,完全删除androID:deBUGgable标签.以下是cordova的解释:

Explanation for issues of type “HardcodedDeBUGMode”:
It’s best to leave out the androID:deBUGgable attribute from the manifest.
If you do, then the tools will automatically insert androID:deBUGgable=true
when building an APK to deBUG on an emulator or device. And when you
perform a release build, such as Exporting APK, it will automatically set
it to false.

另一方面,如果您在清单文件中指定特定值,
   然后工具将始终使用它.这可能导致意外发布
   你的应用程序有调试信息.

第3步:

现在我们可以告诉cordova生成我们的发布版本:

D:\projects\Phonegap\Example> cordova build --release androID

然后,我们可以在platforms / androID / ant-build中找到我们的未签名APK文件.在我们的示例中,该文件是platforms / androID / ant-build / Example-release-unsigned.apk

第4步:

注意:我们在此Git Repo中有我们的密钥库keystorename-mobileapps.keystore,如果您想创建另一个,请继续执行以下步骤.

密钥生成:

句法:

keytool -genkey -v -keystore <keystorename>.keystore -alias <Keystore Aliasname> -keyalg <Key algorithm> -keysize <Key size> -valIDity <Key ValIDity in Days>

EGS:

keytool -genkey -v -keystore name-mobileapps.keystore -alias namemobileapps -keyalg RSA -keysize 2048 -valIDity 10000keystore password? : xxxxxxxWhat is your first and last name? :  xxxxxxWhat is the name of your organizational unit? :  xxxxxxxxWhat is the name of your organization? :  xxxxxxxxxWhat is the name of your City or Locality? :  xxxxxxxWhat is the name of your State or Province? :  xxxxxWhat is the two-letter country code for this unit? :  xxx

然后生成密钥库,名称为name-mobileapps.keystore

第5步:

将生成的密钥库放入

旧版科尔多瓦

D:\projects\Phonegap\Example\platforms\androID\ant-build

新版cordova

D:\projects\Phonegap\Example\platforms\androID\build\outputs\apk

要签署未签名的APK,请运行jarsigner工具,该工具也包含在JDK中:

句法:

jarsigner -verbose -sigalg SHA1withRSA -digestalg SHA1 -keystore <keystorename> <Unsigned APK file> <Keystore Alias name>

EGS:

D:\projects\Phonegap\Example\platforms\androID\ant-build> jarsigner -verbose -sigalg SHA1withRSA -digestalg SHA1 -keystore name-mobileapps.keystore Example-release-unsigned.apk xxxxxmobileapps

要么

D:\projects\Phonegap\Example\platforms\androID\build\outputs\apk> jarsigner -verbose -sigalg SHA1withRSA -digestalg SHA1 -keystore name-mobileapps.keystore Example-release-unsigned.apk xxxxxmobileappsEnter KeyPhrase as 'xxxxxxxx'

这标志着apk到位.

第6步:

最后,我们需要运行zip对齐工具来优化APK:

D:\projects\Phonegap\Example\platforms\androID\ant-build> zipalign -v 4 Example-release-unsigned.apk Example.apk 

要么

D:\projects\Phonegap\Example\platforms\androID\ant-build> C:\Phonegap\adt-bundle-windows-x86_64-20140624\sdk\build-tools\androID-4.4W\zipalign -v 4 Example-release-unsigned.apk Example.apk

要么

D:\projects\Phonegap\Example\platforms\androID\build\outputs\apk> C:\Phonegap\adt-bundle-windows-x86_64-20140624\sdk\build-tools\androID-4.4W\zipalign -v 4 Example-release-unsigned.apk Example.apk

现在我们有一个名为example.apk的最终发布二进制文件,我们可以在Google Play商店中发布它.

总结

以上是内存溢出为你收集整理的android – 如何使用Cordova命令行界面创建签名的APK文件?全部内容,希望文章能够帮你解决android – 如何使用Cordova命令行界面创建签名的APK文件?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1104060.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-28
下一篇 2022-05-28

发表评论

登录后才能评论

评论列表(0条)

保存