disable automatic Google App Data backup on android

This commit is contained in:
Matias Alejo Garcia 2016-08-06 07:43:53 -03:00
parent 5a58b7ba7f
commit c7688644d6
No known key found for this signature in database
GPG Key ID: 02470DB551277AB3
1 changed files with 2 additions and 1 deletions

View File

@ -2,7 +2,7 @@
<manifest android:hardwareAccelerated="true" android:versionCode="1" android:versionName="v0.10.7" android:windowSoftInputMode="adjustPan" package="com.bitpay.copay" xmlns:android="http://schemas.android.com/apk/res/android">
<supports-screens android:anyDensity="true" android:largeScreens="true" android:normalScreens="true" android:resizeable="true" android:smallScreens="true" android:xlargeScreens="true" />
<uses-permission android:name="android.permission.INTERNET" />
<application android:hardwareAccelerated="true" android:icon="@drawable/copay" android:label="@string/app_name">
<application android:hardwareAccelerated="true" android:icon="@drawable/copay" android:label="@string/app_name" android:allowBackup="false">
<activity android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale" android:label="@string/app_name" android:launchMode="singleTop" android:name="CordovaApp" android:theme="@android:style/Theme.Black.NoTitleBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
@ -29,6 +29,7 @@
</activity>
</application>
<uses-sdk android:minSdkVersion="10" android:targetSdkVersion="19" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.FLASHLIGHT" />
<uses-feature android:name="android.hardware.camera" android:required="false" />