2019-10-15 16:27:06 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-05-18 19:37:54 +00:00
|
|
|
package="net.dankito.banking.ui.android">
|
2019-10-15 16:27:06 +00:00
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
|
|
|
|
|
|
|
|
<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"
|
|
|
|
android:theme="@style/AppTheme">
|
|
|
|
|
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>
|