Disable screenshots on more recovery code screens

* Basically try to cover all screens that may have a recovery code

Fixes: #506
Change-Id: If0143b71596ff470a04982d8f87b7a622d362309
This commit is contained in:
Chirayu Desai 2023-01-20 23:20:04 +05:30
parent 8367e99421
commit 23abc02d69
2 changed files with 7 additions and 0 deletions

View file

@ -14,6 +14,7 @@ import android.view.View.GONE
import android.view.View.OnFocusChangeListener
import android.view.View.VISIBLE
import android.view.ViewGroup
import android.view.WindowManager.LayoutParams.FLAG_SECURE
import android.widget.ArrayAdapter
import android.widget.AutoCompleteTextView
import android.widget.Button
@ -70,6 +71,8 @@ class RecoveryCodeInputFragment : Fragment() {
): View {
val v: View = inflater.inflate(R.layout.fragment_recovery_code_input, container, false)
if (!isDebugBuild()) getActivity()?.window?.addFlags(FLAG_SECURE)
introText = v.findViewById(R.id.introText)
doneButton = v.findViewById(R.id.doneButton)
newCodeButton = v.findViewById(R.id.newCodeButton)

View file

@ -5,11 +5,13 @@ import android.os.Bundle
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
import android.view.WindowManager.LayoutParams.FLAG_SECURE
import android.widget.Button
import androidx.fragment.app.Fragment
import androidx.recyclerview.widget.GridLayoutManager
import androidx.recyclerview.widget.RecyclerView
import com.stevesoltys.seedvault.R
import com.stevesoltys.seedvault.isDebugBuild
import org.koin.androidx.viewmodel.ext.android.sharedViewModel
class RecoveryCodeOutputFragment : Fragment() {
@ -26,6 +28,8 @@ class RecoveryCodeOutputFragment : Fragment() {
): View {
val v: View = inflater.inflate(R.layout.fragment_recovery_code_output, container, false)
if (!isDebugBuild()) getActivity()?.window?.addFlags(FLAG_SECURE)
wordList = v.findViewById(R.id.wordList)
confirmCodeButton = v.findViewById(R.id.confirmCodeButton)