Кто шарит, можно ли будет поставить скрытое второе пространство на galaxy s24 ultra? Куда вообще можно это добро спрятать в папки системы? Ну и вот пример кода — public class SecurityLoginActivity extends AppCompatActivity { private int failedAttempts = 0; Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_security_login); if (isDeviceRooted() || isEmulator() || (getApplicationInfo().flags & ApplicationInfo.FLAG_DEBUGGABLE) != 0) { finishAffinity(); return; } findViewById(R.id.unlockButton).setOnClickListener(v -> { String password = ((EditText) findViewById(R.id.passwordInput)).getText().toString(); handleAuthentication(password); }); authenticateFingerprint(); } private void handleAuthentication(String password) { if (checkPassword(password)) { loadHiddenActivity(); } else if (isDestructCode(password)) { secureWipe(); } else { failedAttempts++; if (failedAttempts >= 5) secureWipe(); Toast.makeText(this, "Auth Error", Toast.LENGTH_SHORT).show(); } }