diff options
Diffstat (limited to 'wallet/src/main/AndroidManifest.xml')
-rw-r--r-- | wallet/src/main/AndroidManifest.xml | 54 |
1 files changed, 27 insertions, 27 deletions
diff --git a/wallet/src/main/AndroidManifest.xml b/wallet/src/main/AndroidManifest.xml index a61483d..608c624 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> |