Skip to content

Commit

Permalink
remove allows backups from manifests (#481)
Browse files Browse the repository at this point in the history
  • Loading branch information
elihart authored Jul 28, 2018
1 parent 86b1643 commit c02578e
Show file tree
Hide file tree
Showing 8 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion epoxy-databinding/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

xmlns:android="http://schemas.android.com/apk/res/android">

<application android:allowBackup="true" android:label="@string/app_name"
<application android:label="@string/app_name"
android:supportsRtl="true">

</application>
Expand Down
1 change: 0 additions & 1 deletion epoxy-integrationtest/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
xmlns:android="http://schemas.android.com/apk/res/android">

<application
android:allowBackup="true"
android:label="@string/app_name"
android:theme="@style/Theme.AppCompat.Light">

Expand Down
3 changes: 2 additions & 1 deletion epoxy-litho/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

xmlns:android="http://schemas.android.com/apk/res/android">

<application android:allowBackup="true" android:label="@string/app_name"
<application
android:label="@string/app_name"
android:supportsRtl="true">

</application>
Expand Down
1 change: 0 additions & 1 deletion epoxy-pagingsample/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
xmlns:android="http://schemas.android.com/apk/res/android">

<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher_background"
android:label="@string/app_name"
android:supportsRtl="true"
Expand Down
3 changes: 2 additions & 1 deletion epoxy-processortest/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
<manifest package="com.airbnb.epoxy.processortest"
xmlns:android="http://schemas.android.com/apk/res/android">

<application android:allowBackup="true" android:label="@string/app_name"
<application
android:label="@string/app_name"
android:supportsRtl="true">

</application>
Expand Down
3 changes: 2 additions & 1 deletion epoxy-processortest2/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
<manifest package="com.airbnb.epoxy.processortest2"
xmlns:android="http://schemas.android.com/apk/res/android">

<application android:allowBackup="true" android:label="@string/app_name"
<application
android:label="@string/app_name"
android:supportsRtl="true">

</application>
Expand Down
1 change: 0 additions & 1 deletion epoxy-sample/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

<application
android:name=".SampleApplication"
android:allowBackup="true"
android:label="@string/app_name"
android:theme="@style/Theme.AppCompat.Light">
<activity
Expand Down
1 change: 0 additions & 1 deletion kotlinsample/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
xmlns:android="http://schemas.android.com/apk/res/android">

<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
Expand Down

0 comments on commit c02578e

Please sign in to comment.