tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

shortcuts.xml (1394B)


      1 <?xml version="1.0" encoding="utf-8"?>
      2 <!-- This Source Code Form is subject to the terms of the Mozilla Public
      3   - License, v. 2.0. If a copy of the MPL was not distributed with this
      4   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
      5 <shortcuts xmlns:android="http://schemas.android.com/apk/res/android">
      6    <shortcut
      7        android:shortcutId="erase"
      8        android:enabled="true"
      9        android:icon="@drawable/ic_shortcut_erase"
     10        android:shortcutShortLabel="@string/shortcut_erase_short_label"
     11        android:shortcutLongLabel="@string/shortcut_erase_long_label">
     12        <intent
     13            android:action="erase"
     14            android:targetPackage="org.mozilla.focus.beta"
     15            android:targetClass="org.mozilla.focus.activity.EraseShortcutActivity">
     16                <extra android:name="shortcut" android:value="true" />
     17        </intent>
     18    </shortcut>
     19  <shortcut
     20      android:shortcutId="erase_and_open"
     21      android:enabled="true"
     22      android:icon="@drawable/ic_shortcut_erase"
     23      android:shortcutShortLabel="@string/shortcut_erase_and_open_short_label">
     24    <intent
     25        android:action="erase"
     26        android:targetPackage="org.mozilla.focus.beta"
     27        android:targetClass="org.mozilla.focus.activity.EraseAndOpenShortcutActivity">
     28      <extra android:name="shortcut" android:value="true" />
     29    </intent>
     30  </shortcut>
     31 </shortcuts>