]> git.ktnx.net Git - mobile-ledger.git/blobdiff - app/src/main/AndroidManifest.xml
update accounts table visual upon refreshilg the account data from the backend
[mobile-ledger.git] / app / src / main / AndroidManifest.xml
index ee612ac456b7c1f7afe56bd123c6c2516abbb1f8..926fc763bb506bce0188ce502eae1f3cf54c837b 100644 (file)
@@ -2,6 +2,8 @@
 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
     package="net.ktnx.mobileledger">
 
+    <uses-permission android:name="android.permission.INTERNET" />
+
     <application
         android:allowBackup="true"
         android:icon="@mipmap/ic_launcher"
@@ -11,8 +13,8 @@
         android:theme="@style/AppTheme"
         android:fullBackupContent="@xml/backup_descriptor">
         <activity
-            android:name=".LatestTransactions"
-            android:label="@string/app_name"
+            android:name=".AccountSummary"
+            android:label="@string/account_summary_title"
             android:theme="@style/AppTheme.NoActionBar">
             <intent-filter>
                 <action android:name="android.intent.action.MAIN" />
         <activity
             android:name=".SettingsActivity"
             android:label="@string/title_activity_settings"
-            android:parentActivityName=".LatestTransactions">
+            android:parentActivityName=".AccountSummary">
+            <meta-data
+                android:name="android.support.PARENT_ACTIVITY"
+                android:value="net.ktnx.mobileledger.AccountSummary" />
+        </activity>
+        <activity
+            android:name=".NewTransactionActivity"
+            android:label="@string/title_activity_new_transaction"
+            android:parentActivityName=".AccountSummary"
+            android:theme="@style/AppTheme.NoActionBar">
             <meta-data
                 android:name="android.support.PARENT_ACTIVITY"
-                android:value="net.ktnx.mobileledger.LatestTransactions" />
+                android:value="net.ktnx.mobileledger.AccountSummary" />
         </activity>
     </application>