]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/AndroidManifest.xml
home is account summary, latest transactions is a new item
[mobile-ledger.git] / app / src / main / AndroidManifest.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
3     package="net.ktnx.mobileledger">
4
5     <uses-permission android:name="android.permission.INTERNET" />
6
7     <application
8         android:allowBackup="true"
9         android:icon="@mipmap/ic_launcher"
10         android:label="@string/app_name"
11         android:roundIcon="@mipmap/ic_launcher_round"
12         android:supportsRtl="true"
13         android:theme="@style/AppTheme"
14         android:fullBackupContent="@xml/backup_descriptor">
15         <activity
16             android:name=".AccountSummary"
17             android:label="@string/account_summary_title"
18             android:theme="@style/AppTheme.NoActionBar">
19             <intent-filter>
20                 <action android:name="android.intent.action.MAIN" />
21
22                 <category android:name="android.intent.category.LAUNCHER" />
23             </intent-filter>
24         </activity>
25         <activity
26             android:name=".SettingsActivity"
27             android:label="@string/title_activity_settings"
28             android:parentActivityName=".AccountSummary">
29             <meta-data
30                 android:name="android.support.PARENT_ACTIVITY"
31                 android:value="net.ktnx.mobileledger.AccountSummary" />
32         </activity>
33         <activity
34             android:name=".NewTransactionActivity"
35             android:label="@string/title_activity_new_transaction"
36             android:parentActivityName=".AccountSummary"
37             android:theme="@style/AppTheme.NoActionBar">
38             <meta-data
39                 android:name="android.support.PARENT_ACTIVITY"
40                 android:value="net.ktnx.mobileledger.AccountSummary" />
41         </activity>
42     </application>
43
44 </manifest>