]> git.ktnx.net Git - mobile-ledger.git/blobdiff - app/src/main/AndroidManifest.xml
start the Transaction list activity not really a thing yet
[mobile-ledger.git] / app / src / main / AndroidManifest.xml
index 926fc763bb506bce0188ce502eae1f3cf54c837b..deefabf17f889ef9267ad14e9dbbaa1cde22f7b2 100644 (file)
@@ -6,12 +6,12 @@
 
     <application
         android:allowBackup="true"
+        android:fullBackupContent="@xml/backup_descriptor"
         android:icon="@mipmap/ic_launcher"
         android:label="@string/app_name"
         android:roundIcon="@mipmap/ic_launcher_round"
         android:supportsRtl="true"
-        android:theme="@style/AppTheme"
-        android:fullBackupContent="@xml/backup_descriptor">
+        android:theme="@style/AppTheme">
         <activity
             android:name=".AccountSummary"
             android:label="@string/account_summary_title"
                 android:name="android.support.PARENT_ACTIVITY"
                 android:value="net.ktnx.mobileledger.AccountSummary" />
         </activity>
+        <activity android:name=".TransactionListActivity"
+            android:label="@string/title_activity_transaction_list"
+            android:parentActivityName=".AccountSummary"
+            android:theme="@style/AppTheme.NoActionBar">
+            <meta-data
+                android:name="android.support.PARENT_ACTIVITY"
+                android:value="net.ktnx.mobileledger.AccountSummary" />
+            <intent-filter>
+                <action android:name="android.intent.action.MAIN" />
+
+                <category android:name="android.intent.category.LAUNCHER" />
+            </intent-filter>
+        </activity>
     </application>
 
 </manifest>
\ No newline at end of file