...
Code Block | ||||
---|---|---|---|---|
| ||||
{ "android": { "release": { "keystore": "myCordovaApp.jks", "storePassword": "", "alias": "myCordovaAppName", "password" : "", "keystoreType": "" } } } |
...
Download build.json
Alternatively, you can download an example build.json file here:
...
You can leave your passwords blank (for extra security, you'll be prompted for these when running the build request), and the only fields you'll need to enter are:
Description of Values:
keystore:
This is the path to the signing certificate file you generated in the previous step. In this example we've placed the certificate in the project root (at the same level as your config.xml file), therefore just the name of the file is enough.
...
Info |
---|
Note: For developers used to building Cordova apps, you'll notice we haven't included section for "debug" details in the build.json. These are generated automatically for you by the BuildBots, so there is no need to include them here. |
...