]> git.ktnx.net Git - mobile-ledger.git/blobdiff - app/src/main/AndroidManifest.xml
provide cloud backup functionality
[mobile-ledger.git] / app / src / main / AndroidManifest.xml
index 430b395170ed49438fb988e1fa8fcb615291067d..e3ec6ee1b34b5f6eda0282e64cc4e4acb54a428e 100644 (file)
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="utf-8"?><!--
-  ~ Copyright © 2020 Damyan Ivanov.
+  ~ Copyright © 2021 Damyan Ivanov.
   ~ This file is part of MoLe.
   ~ MoLe is free software: you can distribute it and/or modify it
   ~ under the term of the GNU General Public License as published by
         android:networkSecurityConfig="@xml/network_security_config"
         android:roundIcon="@drawable/app_icon_round"
         android:supportsRtl="true"
+        android:backupAgent="net.ktnx.mobileledger.backup.MobileLedgerBackupAgent"
         tools:ignore="GoogleAppIndexingWarning">
+        <activity
+            android:name=".BackupsActivity"
+            android:label="@string/backups_activity_label"
+            android:theme="@style/AppTheme.default" />
+        <activity
+            android:name=".ui.templates.TemplatesActivity"
+            android:label="@string/title_activity_templates"
+            android:theme="@style/AppTheme.default" />
         <activity
             android:name=".ui.activity.SplashActivity"
             android:label="@string/app_name"
             android:label="@string/app_name"
             android:theme="@style/AppTheme.default" />
         <activity
-            android:name=".ui.activity.NewTransactionActivity"
+            android:name=".ui.new_transaction.NewTransactionActivity"
             android:label="@string/title_activity_new_transaction"
             android:parentActivityName=".ui.activity.MainActivity"
-            android:theme="@style/AppTheme.default" />
+            android:theme="@style/AppTheme.default"
+            android:windowSoftInputMode="stateVisible|adjustResize" />
         <activity
-            android:name=".ui.activity.ProfileDetailActivity"
+            android:name=".ui.profiles.ProfileDetailActivity"
             android:label="@string/title_profile_details"
-            android:parentActivityName=".ui.activity.MainActivity" />
+            android:parentActivityName=".ui.activity.MainActivity"
+            android:windowSoftInputMode="stateVisible|adjustResize" />
     </application>
 
 </manifest>
\ No newline at end of file