Priyansu431 commented on issue #306: URL: https://github.com/apache/cordova-plugin-file-transfer/issues/306#issuecomment-1337040068
 For "ERR CLEARTEXT NOT PERMITTED" you need to add `<application android:usesCleartextTraffic="true" />` into config.xml Example: ``` <edit-config file="app/src/main/AndroidManifest.xml" mode="merge" target="/manifest/application" xmlns:android="http://schemas.android.com/apk/res/android"> <application android:usesCleartextTraffic="true" /> </edit-config> ``` -- 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. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
