summaryrefslogtreecommitdiff
path: root/app/src/main/AndroidManifest.xml
diff options
context:
space:
mode:
authorTorsten Grote <t@grobox.de>2020-02-17 15:15:11 -0300
committerTorsten Grote <t@grobox.de>2020-02-17 15:15:11 -0300
commit5522993ea436e1fb0eaec98b412fc97203bfd899 (patch)
tree566318804680b6726f26f80437b24c0d0ff061e7 /app/src/main/AndroidManifest.xml
parent6f022dd8d9f14f9b52a8ca6d2b76c5ebb5286588 (diff)
downloadwallet-android-5522993ea436e1fb0eaec98b412fc97203bfd899.tar.gz
wallet-android-5522993ea436e1fb0eaec98b412fc97203bfd899.tar.bz2
wallet-android-5522993ea436e1fb0eaec98b412fc97203bfd899.zip
Redesign payment screen
This uses a slightly different layout in landscape mode and doesn't lock the QR code scanning orientation to fix orientation detection which sometimes uses a wrong layout.
Diffstat (limited to 'app/src/main/AndroidManifest.xml')
-rw-r--r--app/src/main/AndroidManifest.xml17
1 files changed, 12 insertions, 5 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
index 99d83c2..4b9e4da 100644
--- a/app/src/main/AndroidManifest.xml
+++ b/app/src/main/AndroidManifest.xml
@@ -1,5 +1,4 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
+<?xml version="1.0" encoding="utf-8"?><!--
~ This file is part of GNU Taler
~ (C) 2020 Taler Systems S.A.
~
@@ -20,7 +19,8 @@
package="net.taler.wallet">
<uses-permission android:name="android.permission.NFC" />
- <uses-feature android:name="android.hardware.nfc.hce"
+ <uses-feature
+ android:name="android.hardware.nfc.hce"
android:required="false" />
<application
@@ -36,17 +36,24 @@
android:label="@string/app_name"
android:theme="@style/AppTheme.NoActionBar">
<intent-filter>
- <action android:name="android.intent.action.MAIN"/>
- <category android:name="android.intent.category.LAUNCHER"/>
+ <action android:name="android.intent.action.MAIN" />
+ <category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
+
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
+
<data android:scheme="taler" />
</intent-filter>
</activity>
+ <activity
+ android:name="com.journeyapps.barcodescanner.CaptureActivity"
+ android:screenOrientation="fullSensor"
+ tools:replace="screenOrientation" />
+
<service
android:name=".HostCardEmulatorService"
android:exported="true"