2019-10-15 16:27:06 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-10-21 16:16:24 +00:00
|
|
|
<manifest
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
package="net.dankito.banking.ui.android"
|
|
|
|
>
|
2019-10-15 16:27:06 +00:00
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
|
2020-10-09 23:22:51 +00:00
|
|
|
<uses-permission android:name="android.permission.USE_FINGERPRINT" />
|
|
|
|
<uses-permission android:name="android.permission.USE_BIOMETRIC" />
|
|
|
|
|
2020-11-19 21:25:18 +00:00
|
|
|
|
|
|
|
<!-- FileChooserDialog for reading PDFs and exporting CSVs -->
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
|
|
2020-10-21 16:16:24 +00:00
|
|
|
<!-- Both are required for ZXing -->
|
|
|
|
<uses-permission android:name="android.permission.CAMERA" />
|
|
|
|
|
|
|
|
<uses-sdk tools:overrideLibrary="com.google.zxing.client.android" />
|
|
|
|
|
2019-10-15 16:27:06 +00:00
|
|
|
|
|
|
|
<application
|
2020-05-18 19:37:54 +00:00
|
|
|
android:name="net.dankito.banking.ui.android.BankingApp"
|
2020-05-04 11:21:04 +00:00
|
|
|
android:testOnly="false"
|
|
|
|
android:allowBackup="true"
|
2020-10-09 20:54:21 +00:00
|
|
|
android:icon="@mipmap/ic_launcher"
|
2020-05-04 11:21:04 +00:00
|
|
|
android:label="@string/app_name"
|
|
|
|
android:supportsRtl="true"
|
2020-10-21 16:16:24 +00:00
|
|
|
android:hardwareAccelerated="true"
|
|
|
|
android:theme="@style/AppTheme"
|
2020-11-19 21:25:18 +00:00
|
|
|
android:requestLegacyExternalStorage="true"
|
2020-10-21 16:16:24 +00:00
|
|
|
>
|
2020-05-04 11:21:04 +00:00
|
|
|
|
2019-10-15 16:27:06 +00:00
|
|
|
<activity
|
2020-10-01 18:31:40 +00:00
|
|
|
android:name=".activities.LandingActivity"
|
|
|
|
android:noHistory="true"
|
2020-09-12 21:55:46 +00:00
|
|
|
>
|
2020-05-04 11:21:04 +00:00
|
|
|
|
2019-10-15 16:27:06 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
2020-10-01 18:31:40 +00:00
|
|
|
|
2019-10-15 16:27:06 +00:00
|
|
|
</activity>
|
2020-09-12 21:55:46 +00:00
|
|
|
|
2020-10-01 18:31:40 +00:00
|
|
|
<activity
|
|
|
|
android:name=".activities.LoginActivity"
|
|
|
|
android:noHistory="true"
|
|
|
|
android:theme="@style/AppTheme"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".MainActivity"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:theme="@style/AppTheme"
|
|
|
|
/>
|
|
|
|
|
2019-10-15 16:27:06 +00:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|