-
Notifications
You must be signed in to change notification settings - Fork 813
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PM-13155 add shortcuts file to beta source set for beta app id (#4196)
- Loading branch information
1 parent
fab0187
commit 6e0ce3b
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<shortcuts xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<shortcut | ||
android:enabled="true" | ||
android:icon="@mipmap/ic_generator_shortcut" | ||
android:shortcutId="bitwarden_password_generator" | ||
android:shortcutLongLabel="@string/password_generator" | ||
android:shortcutShortLabel="@string/password_generator"> | ||
<intent | ||
android:action="android.intent.action.VIEW" | ||
android:data="bitwarden://password_generator" | ||
android:targetClass="com.x8bit.bitwarden.MainActivity" | ||
android:targetPackage="com.x8bit.bitwarden.beta" /> | ||
</shortcut> | ||
<shortcut | ||
android:enabled="true" | ||
android:icon="@mipmap/ic_vault_shortcut" | ||
android:shortcutId="bitwarden_my_vault" | ||
android:shortcutLongLabel="@string/my_vault" | ||
android:shortcutShortLabel="@string/my_vault"> | ||
<intent | ||
android:action="android.intent.action.VIEW" | ||
android:data="bitwarden://my_vault" | ||
android:targetClass="com.x8bit.bitwarden.MainActivity" | ||
android:targetPackage="com.x8bit.bitwarden.beta" /> | ||
</shortcut> | ||
</shortcuts> |