I want to sign my apk with my keystore file in debug build also ,i have created a build.json file with following info
{
"android": {
"debug": {
"keystore": "..//my.keystore",
"alias": "alias",
"password": "password",
"storePassword": "password"
},
"release": {
"keystore": "..//my.keystore",
"alias": "alias",
"password": "password",
"storePassword": "password"
}
}
}
when i build the apk with command ionic cordova build android --debug --buildconfig
it still sign the apk with default key not mine
for ionic cordova build android --release --buildconfig
it is fine it is signing with my key
i have verified in signing-config.json
i am following this documentation
https://cordova.apache.org/docs/en/latest/guide/platforms/android/#signing-an-app
Please help