summaryrefslogtreecommitdiffstats
path: root/mobile/android/fenix/app/src/debug/res/xml/shortcuts.xml
blob: 42f365234c5f482b49d0c5f71ab1883485977548 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?xml version="1.0" encoding="utf-8"?>
<!-- This Source Code Form is subject to the terms of the Mozilla Public
   - License, v. 2.0. If a copy of the MPL was not distributed with this
   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->

<shortcuts xmlns:android="http://schemas.android.com/apk/res/android">
    <shortcut
        android:shortcutId="password_manager"
        android:enabled="true"
        android:icon="@drawable/ic_static_password_shortcut"
        android:shortcutShortLabel="@string/home_screen_shortcut_passwords">
        <intent
            android:action="org.mozilla.fenix.OPEN_PASSWORD_MANAGER"
            android:targetPackage="org.mozilla.fenix.debug"
            android:targetClass="org.mozilla.fenix.IntentReceiverActivity" />
    </shortcut>
    <shortcut
        android:shortcutId="open_new_tab"
        android:enabled="true"
        android:icon="@drawable/ic_static_shortcut_tab"
        android:shortcutShortLabel="@string/home_screen_shortcut_open_new_tab_2">
        <intent
            android:action="org.mozilla.fenix.OPEN_TAB"
            android:targetPackage="org.mozilla.fenix.debug"
            android:targetClass="org.mozilla.fenix.IntentReceiverActivity" />
    </shortcut>
    <shortcut
        android:shortcutId="open_new_private_tab"
        android:enabled="true"
        android:icon="@drawable/ic_static_shortcut_private_tab"
        android:shortcutShortLabel="@string/home_screen_shortcut_open_new_private_tab_2">
        <intent
            android:action="org.mozilla.fenix.OPEN_PRIVATE_TAB"
            android:targetPackage="org.mozilla.fenix.debug"
            android:targetClass="org.mozilla.fenix.IntentReceiverActivity" />
    </shortcut>
</shortcuts>