]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/AndroidManifest.xml
47f9b1d4f5276e21aa8795f91453e598fda8b76b
[mobile-ledger.git] / app / src / main / AndroidManifest.xml
1 <?xml version="1.0" encoding="utf-8"?><!--
2   ~ Copyright © 2022 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     package="net.ktnx.mobileledger">
20
21     <uses-permission android:name="android.permission.INTERNET" />
22
23     <application
24         android:name=".App"
25         android:allowBackup="true"
26         android:appCategory="productivity"
27         android:fullBackupContent="@xml/backup_descriptor"
28         android:icon="@drawable/app_icon"
29         android:label="@string/app_name"
30         android:networkSecurityConfig="@xml/network_security_config"
31         android:roundIcon="@drawable/app_icon_round"
32         android:supportsRtl="true"
33         android:backupAgent="net.ktnx.mobileledger.backup.MobileLedgerBackupAgent"
34         tools:ignore="GoogleAppIndexingWarning">
35         <activity
36             android:name=".BackupsActivity"
37             android:label="@string/backups_activity_label"
38             android:theme="@style/AppTheme.default" />
39         <activity
40             android:name=".ui.templates.TemplatesActivity"
41             android:label="@string/title_activity_templates"
42             android:theme="@style/AppTheme.default" />
43         <activity
44             android:name=".ui.activity.SplashActivity"
45             android:exported="true"
46             android:theme="@style/AppTheme.default">
47             <intent-filter>
48                 <action android:name="android.intent.action.MAIN" />
49                 <category android:name="android.intent.category.LAUNCHER" />
50             </intent-filter>
51         </activity>
52         <activity
53             android:name=".ui.activity.MainActivity"
54             android:theme="@style/AppTheme.default" />
55         <activity
56             android:name=".ui.new_transaction.NewTransactionActivity"
57             android:label="@string/title_activity_new_transaction"
58             android:parentActivityName=".ui.activity.MainActivity"
59             android:theme="@style/AppTheme.default"
60             android:windowSoftInputMode="stateVisible|adjustResize" />
61         <activity
62             android:name=".ui.profiles.ProfileDetailActivity"
63             android:label="@string/title_profile_details"
64             android:parentActivityName=".ui.activity.MainActivity"
65             android:windowSoftInputMode="stateVisible|adjustResize" />
66     </application>
67
68 </manifest>