cashless2ecash

cashless2ecash: pay with cards for digital cash (experimental)
Log | Files | Refs | README

AndroidManifest.xml (1703B)


      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 
      7     <application
      8         android:allowBackup="true"
      9         android:dataExtractionRules="@xml/data_extraction_rules"
     10         android:fullBackupContent="@xml/backup_rules"
     11         android:icon="@mipmap/ic_launcher"
     12         android:label="@string/app_name"
     13         android:roundIcon="@mipmap/ic_launcher_round"
     14         android:supportsRtl="true"
     15         android:theme="@style/Theme.Walleec2ec"
     16         android:allowClearUserData="true"
     17         android:usesCleartextTraffic="true"
     18         tools:targetApi="31">
     19         <activity
     20             android:name=".MainActivity"
     21             android:exported="true"
     22             android:theme="@style/Theme.Walleec2ec">
     23             <intent-filter>
     24                 <action android:name="android.intent.action.MAIN" />
     25                 <action android:name="com.wallee.android.TILL_APPLICATION" />
     26                 <category android:name="android.intent.category.DEFAULT" />
     27                 <category android:name="android.intent.category.LAUNCHER" />
     28             </intent-filter>
     29         </activity>
     30         <activity
     31             android:name=".withdrawal.WithdrawalActivity"
     32             android:launchMode="singleTop"
     33             android:exported="false"
     34             android:theme="@style/Theme.Walleec2ec">
     35         </activity>
     36         <activity
     37             android:name=".withdrawal.ManageActivity"
     38             android:exported="false"
     39             android:theme="@style/Theme.Walleec2ec">
     40         </activity>
     41     </application>
     42 </manifest>