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 21:34:37 +0300
committerStefan Niedermann <info@niedermann.it>2020-04-08 21:34:37 +0300
commit54d8de812492ecd7d1cfb28d93748060c09d63db (patch)
tree7483f3037362b8b2243ccff2f0d2f5fb24c7556e /app/src/play
parent04e0345b97f46047b0d117b81a986b0a07c0539c (diff)
#358 Create PickStackActivity
Fix shortcuts Signed-off-by: Stefan Niedermann <info@niedermann.it>
Diffstat (limited to 'app/src/play')
-rw-r--r--app/src/play/res/xml/shortcuts.xml15
1 files changed, 15 insertions, 0 deletions
diff --git a/app/src/play/res/xml/shortcuts.xml b/app/src/play/res/xml/shortcuts.xml
new file mode 100644
index 000000000..c4a30c282
--- /dev/null
+++ b/app/src/play/res/xml/shortcuts.xml
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="utf-8"?>
+<shortcuts xmlns:android="http://schemas.android.com/apk/res/android">
+ <shortcut
+ android:enabled="true"
+ android:icon="@drawable/ic_add_grey_24dp"
+ android:shortcutId="it.niedermann.nextcloud.deck"
+ android:shortcutLongLabel="@string/add_card"
+ android:shortcutShortLabel="@string/simple_add">
+ <intent
+ android:action="android.intent.action.VIEW"
+ android:targetClass="it.niedermann.nextcloud.deck.ui.pickstack.PickStackActivity"
+ android:targetPackage="it.niedermann.nextcloud.deck.play" />
+ <categories android:name="android.shortcut.conversation" />
+ </shortcut>
+</shortcuts>