summaryrefslogtreecommitdiff
path: root/android/app/src/main/AndroidManifest.xml
diff options
context:
space:
mode:
Diffstat (limited to 'android/app/src/main/AndroidManifest.xml')
-rw-r--r--android/app/src/main/AndroidManifest.xml13
1 files changed, 13 insertions, 0 deletions
diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml
index 3fc5603..4b58442 100644
--- a/android/app/src/main/AndroidManifest.xml
+++ b/android/app/src/main/AndroidManifest.xml
@@ -16,6 +16,19 @@
android:theme="@style/Theme.TaskDetail"
android:exported="false" />
+ <!-- Quick-add bottom sheet (opened by widget "+" button) -->
+ <activity
+ android:name=".ui.QuickAddActivity"
+ android:theme="@style/Theme.TaskDetail"
+ android:exported="false"
+ android:windowSoftInputMode="adjustResize" />
+
+ <!-- Event detail bottom sheet (opened by widget calendar event taps) -->
+ <activity
+ android:name=".ui.EventDetailActivity"
+ android:theme="@style/Theme.TaskDetail"
+ android:exported="false" />
+
<!-- Settings activity (also the widget config screen) -->
<activity
android:name=".ui.SettingsActivity"