RecoveryCode: Allow screenshots on debug builds

* We already pre-fill the code on debug builds to make testing easier
* Allow screenshots too so we don't have to note down the code right away
  when testing

Change-Id: Ie9cc3080616b78a6e5f9b427c080f10c146a036d
This commit is contained in:
Chirayu Desai 2022-09-09 19:19:40 +05:30
parent 270e0baeff
commit 4bd20485ea

View file

@ -4,6 +4,7 @@ import android.os.Bundle
import android.view.MenuItem
import android.view.WindowManager.LayoutParams.FLAG_SECURE
import com.stevesoltys.seedvault.R
import com.stevesoltys.seedvault.isDebugBuild
import com.stevesoltys.seedvault.ui.BackupActivity
import com.stevesoltys.seedvault.ui.INTENT_EXTRA_IS_RESTORE
import org.koin.androidx.viewmodel.ext.android.viewModel
@ -15,7 +16,7 @@ class RecoveryCodeActivity : BackupActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
window.addFlags(FLAG_SECURE)
if (!isDebugBuild()) window.addFlags(FLAG_SECURE)
setContentView(R.layout.activity_recovery_code)