summaryrefslogtreecommitdiff
path: root/wallet/src/main/AndroidManifest.xml
diff options
context:
space:
mode:
authorTorsten Grote <t@grobox.de>2020-04-01 15:11:55 -0300
committerTorsten Grote <t@grobox.de>2020-04-01 15:11:55 -0300
commit9401b3e8f0d6f49751a4d203502cfb76842599c0 (patch)
treeb5fda8690ce0f43027d560064442e610981f85a4 /wallet/src/main/AndroidManifest.xml
parentb2bec204e214e6b077c4c1901d07fabec27104e9 (diff)
downloadtaler-android-9401b3e8f0d6f49751a4d203502cfb76842599c0.tar.gz
taler-android-9401b3e8f0d6f49751a4d203502cfb76842599c0.tar.bz2
taler-android-9401b3e8f0d6f49751a4d203502cfb76842599c0.zip
[wallet] automatic code cleanup
Diffstat (limited to 'wallet/src/main/AndroidManifest.xml')
-rw-r--r--wallet/src/main/AndroidManifest.xml54
1 files changed, 27 insertions, 27 deletions
diff --git a/wallet/src/main/AndroidManifest.xml b/wallet/src/main/AndroidManifest.xml
index a61483d5..608c6246 100644
--- a/wallet/src/main/AndroidManifest.xml
+++ b/wallet/src/main/AndroidManifest.xml
@@ -15,32 +15,32 @@
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- package="net.taler.wallet">
+ xmlns:tools="http://schemas.android.com/tools"
+ package="net.taler.wallet">
<uses-permission android:name="android.permission.NFC" />
<uses-feature
- android:name="android.hardware.telephony"
- android:required="false" />
+ android:name="android.hardware.telephony"
+ android:required="false" />
<uses-feature
- android:name="android.hardware.nfc.hce"
- android:required="false" />
+ 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: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">
<activity
- android:name=".MainActivity"
- android:label="@string/app_name"
- android:theme="@style/AppTheme.NoActionBar">
+ android:name=".MainActivity"
+ 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" />
@@ -56,26 +56,26 @@
</activity>
<activity
- android:name="com.journeyapps.barcodescanner.CaptureActivity"
- android:screenOrientation="fullSensor"
- tools:replace="screenOrientation" />
+ android:name="com.journeyapps.barcodescanner.CaptureActivity"
+ android:screenOrientation="fullSensor"
+ tools:replace="screenOrientation" />
<service
- android:name=".HostCardEmulatorService"
- android:exported="true"
- android:permission="android.permission.BIND_NFC_SERVICE">
+ android:name=".HostCardEmulatorService"
+ android:exported="true"
+ android:permission="android.permission.BIND_NFC_SERVICE">
<intent-filter>
<action android:name="android.nfc.cardemulation.action.HOST_APDU_SERVICE" />
</intent-filter>
<meta-data
- android:name="android.nfc.cardemulation.host_apdu_service"
- android:resource="@xml/apduservice" />
+ android:name="android.nfc.cardemulation.host_apdu_service"
+ android:resource="@xml/apduservice" />
</service>
<service
- android:name=".backend.WalletBackendService"
- android:process=":WalletBackendService" />
+ android:name=".backend.WalletBackendService"
+ android:process=":WalletBackendService" />
</application>
</manifest>