- Latest version of the WebView component based on the Chromium open source project, available as part of Android 5.0 (Lollipop).
- Enable internet permissions for the application. Add the following to AndroidManifest.xml
<uses-permission android:name="android.permission.INTERNET" />
- Add the following under the application tag in AndroidManifest.xml. This allows loading HTTP and HTTPS to load in your WebView. It is best to load the WebView in HTTPS as it prevents load problems and helps with CPM and Fillrate.
android:usesCleartextTraffic=”true”