]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/AndroidManifest.xml
5ab5cdc6207e7a74ce2c72bd32f56705621b63c0
[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=".ui.activity.MainActivity"
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=".ui.activity.SettingsActivity"
44             android:label="@string/title_activity_settings"
45             android:parentActivityName=".ui.activity.MainActivity">
46             <meta-data
47                 android:name="android.support.PARENT_ACTIVITY"
48                 android:value="net.ktnx.mobileledger.ui.activity.MainActivity" />
49         </activity>
50         <activity
51             android:name=".ui.activity.NewTransactionActivity"
52             android:label="@string/title_activity_new_transaction"
53             android:parentActivityName=".ui.activity.MainActivity"
54             android:theme="@style/AppTheme.NoActionBar">
55             <meta-data
56                 android:name="android.support.PARENT_ACTIVITY"
57                 android:value="net.ktnx.mobileledger.ui.activity.MainActivity" />
58         </activity>
59     </application>
60
61 </manifest>