add share to scan to pay
Auto Tag on Version Change / check-version (push) Failing after 11m26s

This commit is contained in:
2026-05-30 20:11:35 +05:00
parent 86e1e66a20
commit 0795df35a1
4 changed files with 87 additions and 9 deletions
@@ -279,10 +279,12 @@ class LockActivity : AppCompatActivity() {
val navDest = intent.getIntExtra("nav_destination", -1)
val autoScan = intent.getBooleanExtra("auto_scan", false)
val autoTapMode = intent.getBooleanExtra("auto_tap_mode", false)
val shareQrText = intent.getStringExtra("share_qr_text")
startActivity(Intent(this, HomeActivity::class.java).apply {
if (navDest != -1) putExtra("nav_destination", navDest)
if (autoScan) putExtra("auto_scan", true)
if (autoTapMode) putExtra("auto_tap_mode", true)
if (shareQrText != null) putExtra("share_qr_text", shareQrText)
})
finish()
}