Thank you. I had a look at your project.
In your config.xml
, you have something like this:
<platform name="android">
<plugin name="cordova-custom-config" source="npm" />
</platform>
Cordova is ignoring <plugin
when it is inside of <platform
, so cordova-custom-config
does not get loaded.
Digging into this some more, it looks like this is due to recent changes to Cordova, specifically in 9.0.0. (PhoneGap Build, since it uses an obsolete version of Cordova does not have this problem.)
Cordova has not documented what they are doing here very well, and it looks like further changes may be coming.
The answer for now seems to be to have separate config.xml
files for iOS and Android.