RecoveryCode: Allow screenshots on debug builds (#446)
* 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:
parent
0106c1911a
commit
c6a77904a6
1 changed files with 2 additions and 1 deletions
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in a new issue