Does my app need cleartext network traffic support?

In order to view remote documents from an HTTP URL, cleartext network traffic support is required. On Android 9.0 (API level 28) or higher, cleartext support is disabled by default and apps targeting Android 9.0 or higher will need to add the android:usesClearTextTraffic="true" flag in the AndroidManifest.xml file. If you are only working with HTTPS files, this flag is not required.

Example:

XML

1<?xml version="1.0" encoding="utf-8"?>
2<manifest ...>
3
4 <!-- Required permissions are added here -->
5 <uses-permission android:name="android.permission.INTERNET"/>
6 <uses-permission android:name="android.permission.RECORD_AUDIO" />
7
8 <!-- Add multidex support and enable largeHeap. Also enable usesCleartextTraffic in application attributes if you are working with HTTP files. If you are only working with HTTPS files, this is not required.-->
9 <application android:name="androidx.multidex.MultiDexApplication" android:largeHeap="true" + android:usesCleartextTraffic="true" ...>
10 ...
11 </application>
12</manifest>

Did you find this helpful?

Trial setup questions?

Ask experts on Discord

Need other help?

Contact Support

Pricing or product questions?

Contact Sales