]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/AndroidManifest.xml
more pronounced day/month delimiters in the transaction list
[mobile-ledger.git] / app / src / main / AndroidManifest.xml
1 <?xml version="1.0" encoding="utf-8"?><!--
2   ~ Copyright © 2024 Damyan Ivanov.
3   ~ This file is part of MoLe.
4   ~ MoLe is free software: you can distribute it and/or modify it
5   ~ under the term of the GNU General Public License as published by
6   ~ the Free Software Foundation, either version 3 of the License, or
7   ~ (at your opinion), any later version.
8   ~
9   ~ MoLe is distributed in the hope that it will be useful,
10   ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
11   ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12   ~ GNU General Public License terms for details.
13   ~
14   ~ You should have received a copy of the GNU General Public License
15   ~ along with MoLe. If not, see <https://www.gnu.org/licenses/>.
16   -->
17 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
18     xmlns:tools="http://schemas.android.com/tools">
19
20     <uses-permission android:name="android.permission.INTERNET" />
21
22     <application
23         android:name=".App"
24         android:allowBackup="true"
25         android:appCategory="productivity"
26         android:icon="@drawable/app_icon"
27         android:label="@string/app_name"
28         android:networkSecurityConfig="@xml/network_security_config"
29         android:roundIcon="@drawable/app_icon_round"
30         android:supportsRtl="true"
31         android:backupAgent=".backup.MobileLedgerBackupAgent"
32         tools:ignore="GoogleAppIndexingWarning">
33         <activity
34             android:name=".BackupsActivity"
35             android:label="@string/backups_activity_label"
36             android:theme="@style/AppTheme.default" />
37         <activity
38             android:name=".ui.templates.TemplatesActivity"
39             android:label="@string/title_activity_templates"
40             android:theme="@style/AppTheme.default" />
41         <activity
42             android:name=".ui.activity.SplashActivity"
43             android:exported="true"
44             android:theme="@style/AppTheme.default">
45             <intent-filter>
46                 <action android:name="android.intent.action.MAIN" />
47                 <category android:name="android.intent.category.LAUNCHER" />
48             </intent-filter>
49         </activity>
50         <activity
51             android:name=".ui.activity.MainActivity"
52             android:theme="@style/AppTheme.default" />
53         <activity
54             android:name=".ui.new_transaction.NewTransactionActivity"
55             android:label="@string/title_activity_new_transaction"
56             android:parentActivityName=".ui.activity.MainActivity"
57             android:theme="@style/AppTheme.default"
58             android:windowSoftInputMode="stateVisible|adjustResize" />
59         <activity
60             android:name=".ui.profiles.ProfileDetailActivity"
61             android:label="@string/title_profile_details"
62             android:parentActivityName=".ui.activity.MainActivity"
63             android:windowSoftInputMode="stateVisible|adjustResize" />
64     </application>
65
66 </manifest>