1 <?xml version="1.0" encoding="utf-8"?>
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.
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.
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/>.
19 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
20 package="net.ktnx.mobileledger">
22 <uses-permission android:name="android.permission.INTERNET" />
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">
34 android:name=".ui.activity.MainActivity"
35 android:label="@string/account_summary_title"
36 android:theme="@style/AppTheme.NoActionBar">
38 <action android:name="android.intent.action.MAIN" />
39 <category android:name="android.intent.category.LAUNCHER" />
43 android:name=".ui.activity.SettingsActivity"
44 android:label="@string/title_activity_settings"
45 android:parentActivityName=".ui.activity.MainActivity">
47 android:name="android.support.PARENT_ACTIVITY"
48 android:value="net.ktnx.mobileledger.ui.activity.MainActivity" />
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">
56 android:name="android.support.PARENT_ACTIVITY"
57 android:value="net.ktnx.mobileledger.ui.activity.MainActivity" />