taler-android

Android apps for GNU Taler (wallet, PoS, cashier)
Log | Files | Refs | README | LICENSE

AndroidManifest.xml (2191B)


      1 <?xml version="1.0" encoding="utf-8"?>
      2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
      3     xmlns:tools="http://schemas.android.com/tools">
      4 
      5     <uses-permission android:name="android.permission.INTERNET" />
      6     <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
      7     <uses-permission android:name="android.permission.NFC" />
      8 
      9     <uses-feature
     10         android:name="android.hardware.nfc.hce"
     11         android:required="false" />
     12 
     13     <application
     14         android:allowBackup="true"
     15         android:dataExtractionRules="@xml/data_extraction_rules"
     16         android:fullBackupContent="@xml/backup_descriptor"
     17         android:icon="@mipmap/ic_launcher"
     18         android:label="@string/app_name"
     19         android:networkSecurityConfig="@xml/network_security_config"
     20         android:roundIcon="@mipmap/ic_launcher"
     21         android:supportsRtl="true"
     22         android:theme="@style/AppTheme"
     23         android:enableOnBackInvokedCallback="false"
     24         tools:ignore="GoogleAppIndexingWarning,UnusedAttribute">
     25 
     26         <property
     27             android:name="android.window.PROPERTY_COMPAT_ALLOW_RESTRICTED_RESIZABILITY"
     28             android:value="true" />
     29 
     30         <activity
     31             android:name=".MainActivity"
     32             android:exported="true"
     33             android:label="@string/app_name"
     34             android:theme="@style/AppTheme.NoActionBar">
     35             <intent-filter>
     36                 <action android:name="android.intent.action.MAIN" />
     37                 <category android:name="android.intent.category.LAUNCHER" />
     38             </intent-filter>
     39         </activity>
     40 
     41         <service
     42             android:name="net.taler.lib.android.TalerNfcService"
     43             android:exported="true"
     44             android:permission="android.permission.BIND_NFC_SERVICE"
     45             tools:ignore="MissingClass">
     46             <intent-filter>
     47                 <action android:name="android.nfc.cardemulation.action.HOST_APDU_SERVICE" />
     48             </intent-filter>
     49 
     50             <meta-data
     51                 android:name="android.nfc.cardemulation.host_apdu_service"
     52                 android:resource="@xml/apduservice" />
     53         </service>
     54 
     55     </application>
     56 
     57 </manifest>