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.