]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/AndroidManifest.xml
whitespace
[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:fullBackupContent="@xml/backup_descriptor"
10         android:icon="@mipmap/ic_launcher"
11         android:label="@string/app_name"
12         android:roundIcon="@mipmap/ic_launcher_round"
13         android:supportsRtl="true"
14         android:theme="@style/AppTheme">
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                 <category android:name="android.intent.category.LAUNCHER" />
22             </intent-filter>
23         </activity>
24         <activity
25             android:name=".SettingsActivity"
26             android:label="@string/title_activity_settings"
27             android:parentActivityName=".AccountSummary">
28             <meta-data
29                 android:name="android.support.PARENT_ACTIVITY"
30                 android:value="net.ktnx.mobileledger.AccountSummary" />
31         </activity>
32         <activity
33             android:name=".NewTransactionActivity"
34             android:label="@string/title_activity_new_transaction"
35             android:parentActivityName=".AccountSummary"
36             android:theme="@style/AppTheme.NoActionBar">
37             <meta-data
38                 android:name="android.support.PARENT_ACTIVITY"
39                 android:value="net.ktnx.mobileledger.AccountSummary" />
40         </activity>
41         <activity
42             android:name=".TransactionListActivity"
43             android:label="@string/title_activity_transaction_list"
44             android:parentActivityName=".AccountSummary"
45             android:theme="@style/AppTheme.NoActionBar">
46             <meta-data
47                 android:name="android.support.PARENT_ACTIVITY"
48                 android:value="net.ktnx.mobileledger.AccountSummary" />
49             <intent-filter>
50                 <action android:name="android.intent.action.MAIN" />
51                 <category android:name="android.intent.category.LAUNCHER" />
52             </intent-filter>
53         </activity>
54     </application>
55
56 </manifest>