diff options
author | Harsh Shandilya <msfjarvis@gmail.com> | 2020-11-21 00:20:11 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-21 00:20:11 +0530 |
commit | 544631da04c38ef734f34ceed31071a551876929 (patch) | |
tree | 1818c031de3e59bc786430b170c14c7b1cca2015 /app/src/main/java/com | |
parent | 8c6809584d4ec53bbc57d7c81ea1fdb2fc5a469d (diff) |
App shortcut fixes (#1213)
Diffstat (limited to 'app/src/main/java/com')
-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 { |