I created an android app a little while ago and was using version 3.5.0 and everything worked great. The Android app store then said I needed to upgrade to a android cordova version of 4.1.1 or higher so I updated my phonegap version to the newest version and my app stopped working. The buttons on the app no longer worked. Do I need to do something specific to make it work?
Quick guess is your app probably uses an external library and the new access restrictions are blocking it. Read up on the whitelisting changes and see if that might the cause.
When you inspected via the Chome dev tools, did it reveal anything?
I will look into whitelisting and see if that fixes my issue. I don't know how to use the chrome sev tools so I havent tested it out on there.
After doing some research on the whitelist changes I determined that was my issue. I made a change that included:
<gap:plugin name="cordova-plugin-whitelist" source="npm" />
<allow-navigation href="*" />
<access origin="*" />
in the config.xml file and that resolved my issue.
Thanks!