Notice: The Monaca & Onsen UI Community Forum is shutting down.
For Onsen UI bug reports, feature requests and questions, please use the Onsen UI GitHub issues page. For help with Monaca, please contact Monaca Support Team.
Thank you to all our community for your contributions to the forum. We look forward to hearing from you in the new communication channels.
Monaca debugger APP
-
I’m building my first app in monaca, on the mobile I have downloaded monaca debugger, when I run the app from there everything works perfectly. However if I download .apk from the web jquery doesn’t work. Can you help me?
-
It could be something to do with using HTTP in Android 9+ if your app makes remote calls. You could try adding:
<platform name=“android”>
<edit-config file=“AndroidManifest.xml” target="/manifest/application" mode=“merge”>
<application android:usesCleartextTraffic=“true” />
</edit-config>
</platform>If you have a paid account, your best bet is to contact Monaca Support Team and they can inspect your project.