diff options
author | Harsh Shandilya <msfjarvis@gmail.com> | 2020-11-21 00:20:11 +0530 |
---|---|---|
committer | Harsh Shandilya <me@msfjarvis.dev> | 2020-12-21 20:26:27 +0530 |
commit | cf9a00990f62fe72d619ec2f1d269f43211f6607 (patch) | |
tree | 3ff3424fdd9de6015a5da2a8d8672f945f854cab /app/src/main/java | |
parent | dcee2856136309f52756da7e8f85d5e0907d61b0 (diff) |
App shortcut fixes (#1213)
(cherry picked from commit 544631da04c38ef734f34ceed31071a551876929)
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
Diffstat (limited to 'app/src/main/java')
-rw-r--r-- | app/src/main/java/com/zeapo/pwdstore/PasswordStore.kt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/app/src/main/java/com/zeapo/pwdstore/PasswordStore.kt b/app/src/main/java/com/zeapo/pwdstore/PasswordStore.kt index 66778e73..b0f8602c 100644 --- a/app/src/main/java/com/zeapo/pwdstore/PasswordStore.kt +++ b/app/src/main/java/com/zeapo/pwdstore/PasswordStore.kt @@ -453,13 +453,15 @@ class PasswordStore : BaseGitActivity() { // Needs an action to be a shortcut intent authDecryptIntent.action = LaunchActivity.ACTION_DECRYPT_PASS + startActivity(decryptIntent) + // Adds shortcut if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N_MR1) { val shortcutManager: ShortcutManager = getSystemService() ?: return val shortcut = Builder(this, item.fullPathToParent) .setShortLabel(item.toString()) .setLongLabel(item.fullPathToParent + item.toString()) - .setIcon(Icon.createWithResource(this, R.mipmap.ic_launcher)) + .setIcon(Icon.createWithResource(this, R.drawable.ic_lock_open_24px)) .setIntent(authDecryptIntent) .build() val shortcuts = shortcutManager.dynamicShortcuts @@ -471,7 +473,6 @@ class PasswordStore : BaseGitActivity() { shortcutManager.addDynamicShortcuts(listOf(shortcut)) } } - startActivity(decryptIntent) } private fun validateState(): Boolean { |