Browse Source

Merge pull request #42 from mndewitt/master

allowBackup=false in AndroidManifest
iou90 6 years ago
parent
commit
58dc1dcbf2
No account linked to committer's email address

+ 1
- 1
android/src/main/AndroidManifest.xml View File

1
 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
1
 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
2
           package="com.dscj.autoheightwebview">
2
           package="com.dscj.autoheightwebview">
3
 
3
 
4
-    <application android:allowBackup="true"
4
+    <application android:allowBackup="false"
5
                  android:label="@string/app_name"
5
                  android:label="@string/app_name"
6
                  android:supportsRtl="true"
6
                  android:supportsRtl="true"
7
     >
7
     >

+ 1
- 1
demo/android/app/src/main/AndroidManifest.xml View File

12
 
12
 
13
     <application
13
     <application
14
       android:name=".MainApplication"
14
       android:name=".MainApplication"
15
-      android:allowBackup="true"
15
+      android:allowBackup="false"
16
       android:label="@string/app_name"
16
       android:label="@string/app_name"
17
       android:icon="@mipmap/ic_launcher"
17
       android:icon="@mipmap/ic_launcher"
18
       android:theme="@style/AppTheme">
18
       android:theme="@style/AppTheme">