Visual studio 科尔多瓦签名应用
Visual studio cordova sign app
我正在尝试使用 visual studio 2015 和 Cordova 制作一个应用程序。
当我构建发行版时,一切正常,但发行版没有,并出现:
The Android packages must be signed when you are debugging with configuration type version . To configure the signing Android , follow the instructions in http://go.microsoft.com/fwlink/?LinkID=613579
我不明白错误在哪里,
谢谢
更新
现在我的 build.json 是:
{
"android": {
"release": {
"keystore": "example.keystore",
"storePassword": "example",
"alias": "example",
"password" : "example",
"keystoreType": ""
}
}
}
但是当我尝试构建版本时,我有这个
A problem occurred evaluating root project 'android'.
Keystore file does not exist: C:\Users\Simone\Desktop\example\example\platforms\android\..\..\example.keystore
密钥库在文件夹 platform\android 中,但我不明白为什么有 \...\...\ 我从不添加这个
看来您需要签署申请。这里有几个链接可以帮助您入门:
- Android 关于签署您的应用程序的文档。这可能应该是您的第一站,因为它解释了调试和发布构建签名过程:https://developer.android.com/tools/publishing/app-signing.html
- 有关为发布分发签署应用程序的教程:https://blog.nraboy.com/2014/09/signing-apache-cordova-android-app-release/
我正在尝试使用 visual studio 2015 和 Cordova 制作一个应用程序。 当我构建发行版时,一切正常,但发行版没有,并出现:
The Android packages must be signed when you are debugging with configuration type version . To configure the signing Android , follow the instructions in http://go.microsoft.com/fwlink/?LinkID=613579
我不明白错误在哪里,
谢谢
更新
现在我的 build.json 是:
{
"android": {
"release": {
"keystore": "example.keystore",
"storePassword": "example",
"alias": "example",
"password" : "example",
"keystoreType": ""
}
}
}
但是当我尝试构建版本时,我有这个
A problem occurred evaluating root project 'android'.
Keystore file does not exist: C:\Users\Simone\Desktop\example\example\platforms\android\..\..\example.keystore
密钥库在文件夹 platform\android 中,但我不明白为什么有 \...\...\ 我从不添加这个
看来您需要签署申请。这里有几个链接可以帮助您入门:
- Android 关于签署您的应用程序的文档。这可能应该是您的第一站,因为它解释了调试和发布构建签名过程:https://developer.android.com/tools/publishing/app-signing.html
- 有关为发布分发签署应用程序的教程:https://blog.nraboy.com/2014/09/signing-apache-cordova-android-app-release/