summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/src/main/AndroidManifest.xml11
1 files changed, 8 insertions, 3 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
index d916f21..a61483d 100644
--- a/app/src/main/AndroidManifest.xml
+++ b/app/src/main/AndroidManifest.xml
@@ -19,19 +19,24 @@
package="net.taler.wallet">
<uses-permission android:name="android.permission.NFC" />
+
+ <uses-feature
+ android:name="android.hardware.telephony"
+ android:required="false" />
<uses-feature
android:name="android.hardware.nfc.hce"
android:required="false" />
<application
android:allowBackup="true"
+ android:fullBackupContent="@xml/backup_descriptor"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme"
- tools:ignore="GoogleAppIndexingWarning"
- android:fullBackupContent="@xml/backup_descriptor">
+ tools:ignore="GoogleAppIndexingWarning">
+
<activity
android:name=".MainActivity"
android:label="@string/app_name"
@@ -73,4 +78,4 @@
android:process=":WalletBackendService" />
</application>
-</manifest> \ No newline at end of file
+</manifest>