2020-04-07 13:19:53 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<navigation xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:id="@+id/signup"
|
|
|
|
app:startDestination="@id/pinEntryFragment">
|
|
|
|
|
|
|
|
<fragment
|
|
|
|
android:id="@+id/pinEntryFragment"
|
|
|
|
android:name="org.thoughtcrime.securesms.pin.PinRestoreEntryFragment"
|
|
|
|
android:label="fragment_pin_entry"
|
|
|
|
tools:layout="@layout/pin_restore_entry_fragment">
|
|
|
|
|
|
|
|
<action
|
|
|
|
android:id="@+id/action_accountLocked"
|
|
|
|
app:destination="@id/pinLockedFragment"
|
|
|
|
app:enterAnim="@anim/nav_default_enter_anim"
|
|
|
|
app:exitAnim="@anim/nav_default_exit_anim"
|
2022-04-23 02:10:01 +03:00
|
|
|
app:popUpTo="@id/signup"
|
|
|
|
app:popUpToInclusive="true" />
|
2020-04-07 13:19:53 -04:00
|
|
|
|
|
|
|
</fragment>
|
|
|
|
|
|
|
|
<fragment
|
|
|
|
android:id="@+id/pinLockedFragment"
|
|
|
|
android:name="org.thoughtcrime.securesms.pin.PinRestoreLockedFragment"
|
|
|
|
android:label="fragment_pin_locked"
|
2020-12-16 09:02:19 +08:00
|
|
|
tools:layout="@layout/pin_restore_locked_fragment"/>
|
2020-04-07 13:19:53 -04:00
|
|
|
|
|
|
|
</navigation>
|