breautek commented on issue #1057: URL: https://github.com/apache/cordova-android/issues/1057#issuecomment-680920364
> <application android:usesCleartextTraffic="true" /> This is not recommended, because it allows your app to make insecure connections and isn't really addressing the actual issue. > Application Error net::ERR_CLEARTEXT_NOT_PERMITTED (file:///android_asset/www/index.html#/url/144228640160/2) This means something on the page `file:///android_asset/www/index.html#/url/144228640160/2` is making a cleartext request to an external resource. This could be loading an image or some other media asset, or it could be an XHR request. The information you've given me, I cannot say what is causing the request but the network tab should have a initiator stacktrace for the request that failed. This should tell you a stacktrace and determine where the request is coming from. If you're webpage is reloading like you suggested before, you may have to enable the "preserve" logs settings so that old data remains after page navigation/loads. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
