Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/stefan-niedermann/nextcloud-deck.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Niedermann <info@niedermann.it>2020-04-08 15:16:21 +0300
committerStefan Niedermann <info@niedermann.it>2020-04-08 15:16:21 +0300
commit153ced811039cf9ff1efebc80eed0e2bfe051a3f (patch)
tree0f3b6e0c8d4057192851343bb06232c8d41080db /app/src/main/AndroidManifest.xml
parent35f20c292bb4f1f3c7b9aadc8427fd86358a64e9 (diff)
Move activities to their correspondent packages
Signed-off-by: Stefan Niedermann <info@niedermann.it>
Diffstat (limited to 'app/src/main/AndroidManifest.xml')
-rw-r--r--app/src/main/AndroidManifest.xml10
1 files changed, 5 insertions, 5 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
index 2fd1423b1..0d1424515 100644
--- a/app/src/main/AndroidManifest.xml
+++ b/app/src/main/AndroidManifest.xml
@@ -57,18 +57,18 @@
</activity>
<activity
- android:name=".ui.EditActivity"
+ android:name=".ui.card.EditActivity"
android:label="@string/edit"
android:parentActivityName="it.niedermann.nextcloud.deck.ui.MainActivity"
android:theme="@style/AppTheme" />
<activity
- android:name=".ui.AttachmentsActivity"
- android:parentActivityName="it.niedermann.nextcloud.deck.ui.EditActivity"
+ android:name=".ui.attachments.AttachmentsActivity"
+ android:parentActivityName="it.niedermann.nextcloud.deck.ui.card.EditActivity"
android:theme="@style/TransparentTheme" />
<activity
- android:name=".ui.SettingsActivity"
+ android:name=".ui.settings.SettingsActivity"
android:label="@string/simple_settings"
android:parentActivityName="it.niedermann.nextcloud.deck.ui.MainActivity"
android:theme="@style/AppTheme" />
@@ -79,7 +79,7 @@
android:theme="@style/AppTheme" />
<activity
- android:name=".ui.AboutActivity"
+ android:name=".ui.about.AboutActivity"
android:label="@string/about"
android:parentActivityName="it.niedermann.nextcloud.deck.ui.MainActivity"
android:theme="@style/AppTheme" />