1
0
Fork 0
mirror of https://github.com/anyproto/anytype-kotlin.git synced 2025-06-08 05:47:05 +09:00

Auth | Fix | Disable qr-code scanning sound (#2267)

This commit is contained in:
Sergey Boishtyan 2022-05-16 17:05:06 +03:00 committed by GitHub
parent 08bbf7368c
commit bdf231af5d
Signed by: github
GPG key ID: 4AEE18F83AFDEB23

View file

@ -108,7 +108,9 @@ class KeychainLoginFragment :
}
private fun startCamera() {
IntentIntegrator.forSupportFragment(this).initiateScan()
IntentIntegrator.forSupportFragment(this)
.setBeepEnabled(false)
.initiateScan()
}
override fun onActivityResult(requestCode: Int, resultCode: Int, data: Intent?) {