]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/AndroidManifest.xml
fu: single transaction list
[mobile-ledger.git] / app / src / main / AndroidManifest.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <!--
3   ~ Copyright © 2018 Damyan Ivanov.
4   ~ This file is part of Mobile-Ledger.
5   ~ Mobile-Ledger is free software: you can distribute it and/or modify it
6   ~ under the term of the GNU General Public License as published by
7   ~ the Free Software Foundation, either version 3 of the License, or
8   ~ (at your opinion), any later version.
9   ~
10   ~ Mobile-Ledger is distributed in the hope that it will be useful,
11   ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
12   ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13   ~ GNU General Public License terms for details.
14   ~
15   ~ You should have received a copy of the GNU General Public License
16   ~ along with Mobile-Ledger. If not, see <https://www.gnu.org/licenses/>.
17   -->
18
19 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
20     package="net.ktnx.mobileledger">
21
22     <uses-permission android:name="android.permission.INTERNET" />
23
24     <application
25         android:allowBackup="true"
26         android:fullBackupContent="@xml/backup_descriptor"
27         android:icon="@mipmap/ic_launcher"
28         android:label="@string/app_name"
29         android:roundIcon="@mipmap/ic_launcher_round"
30         android:supportsRtl="true"
31         android:name="net.ktnx.mobileledger.MobileLedgerApplication"
32         android:theme="@style/AppTheme">
33         <activity
34             android:name=".AccountSummary"
35             android:label="@string/account_summary_title"
36             android:theme="@style/AppTheme.NoActionBar">
37             <intent-filter>
38                 <action android:name="android.intent.action.MAIN" />
39                 <category android:name="android.intent.category.LAUNCHER" />
40             </intent-filter>
41         </activity>
42         <activity
43             android:name=".SettingsActivity"
44             android:label="@string/title_activity_settings"
45             android:parentActivityName=".AccountSummary">
46             <meta-data
47                 android:name="android.support.PARENT_ACTIVITY"
48                 android:value="net.ktnx.mobileledger.AccountSummary" />
49         </activity>
50         <activity
51             android:name=".NewTransactionActivity"
52             android:label="@string/title_activity_new_transaction"
53             android:parentActivityName=".AccountSummary"
54             android:theme="@style/AppTheme.NoActionBar">
55             <meta-data
56                 android:name="android.support.PARENT_ACTIVITY"
57                 android:value="net.ktnx.mobileledger.AccountSummary" />
58         </activity>
59         <activity
60             android:name=".TransactionListActivity"
61             android:label="@string/title_activity_transaction_list"
62             android:parentActivityName=".AccountSummary"
63             android:theme="@style/AppTheme.NoActionBar">
64             <meta-data
65                 android:name="android.support.PARENT_ACTIVITY"
66                 android:value="net.ktnx.mobileledger.AccountSummary" />
67             <intent-filter>
68                 <action android:name="android.intent.action.MAIN" />
69                 <category android:name="android.intent.category.LAUNCHER" />
70             </intent-filter>
71         </activity>
72     </application>
73
74 </manifest>