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:
Diffstat (limited to 'app/src/main/AndroidManifest.xml')
-rw-r--r--app/src/main/AndroidManifest.xml16
1 files changed, 15 insertions, 1 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
index 0d45e2c44..d81c47fd3 100644
--- a/app/src/main/AndroidManifest.xml
+++ b/app/src/main/AndroidManifest.xml
@@ -133,6 +133,20 @@
<action android:name="android.service.quicksettings.action.QS_TILE" />
</intent-filter>
</service>
- </application>
+
+ <activity
+ android:name=".ui.widget.singlecard.SelectCardForWidgetActivity"
+ android:label="@string/share_add_to_card"
+ android:theme="@style/SplashTheme" />
+
+ <receiver android:name=".ui.widget.singlecard.SingleCardWidget">
+ <intent-filter>
+ <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
+ </intent-filter>
+ <meta-data
+ android:name="android.appwidget.provider"
+ android:resource="@xml/widget_single_card_info" />
+ </receiver>
+ </application>
</manifest>