Skip to content

Commit

Permalink
Issue mozilla-mobile#991: Add usesCleartextTraffic
Browse files Browse the repository at this point in the history
Required for SDK 28 (used for cleartext network traffic, such as cleartext HTTP)
  • Loading branch information
psymoon committed Oct 23, 2018
1 parent 3f78032 commit 89f1be2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,17 @@
<uses-feature android:name="android.hardware.touchscreen" android:required="false"/>
<uses-feature android:name="android.software.leanback" android:required="true" />

<!-- Attribute usesCleartextTraffic requires API 23+, tools:ignore="UnusedAttribute" for lint check-->
<application
android:allowBackup="false"
android:banner="@mipmap/app_banner"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme"
android:name=".FocusApplication">
android:name=".FocusApplication"
android:usesCleartextTraffic="true"
tools:ignore="UnusedAttribute">

<provider
android:name="android.support.v4.content.FileProvider"
Expand Down

0 comments on commit 89f1be2

Please sign in to comment.