THE SIMPLEST WAY TO USE CONCEAL – ANYWHERE AND ANY TIME
Install Cordova npm install -g cordova
Add required platforms cordova platform add android@latest
Configure Platform:
Run android with target cordova run android --target=API_35
Run cordova build android --prod
a signign key will be required paired with build.json
keytool -genkey -v -keystore keys/release-keystore.jks -alias conceal-mobile -keyalg RSA -keysize 2048 -validity 10000 -storetype PKCS12
{
"android": {
"release": {
"keystore": "keys/release-keystore.jks",
"storePassword": "<password>",
"alias": "conceal-mobile",
"password": <password>",
"keystoreType": "PKCS12",
"packageType": "apk"
}
}
}
cordova build android --prod --release
Linux/Mac:
./build-with-version.sh
Windows:
build-with-version.bat
```bash
This will create a file like: `Conceal_Mobile-v4.0.5.apk`