diff options
Diffstat (limited to 'wallet/src/main/res/navigation')
-rw-r--r-- | wallet/src/main/res/navigation/nav_graph.xml | 28 |
1 files changed, 27 insertions, 1 deletions
diff --git a/wallet/src/main/res/navigation/nav_graph.xml b/wallet/src/main/res/navigation/nav_graph.xml index bcfbe51..7ce7b02 100644 --- a/wallet/src/main/res/navigation/nav_graph.xml +++ b/wallet/src/main/res/navigation/nav_graph.xml @@ -108,7 +108,33 @@ android:id="@+id/nav_anastasis_authentication" android:name="net.taler.wallet.settings.AnastasisAuthenticationFragment" android:label="Choose authentication methods" - tools:layout="@layout/fragment_anastasis_authentication"/> + tools:layout="@layout/fragment_anastasis_authentication"> + <action + android:id="@+id/action_nav_anastasis_authentication_to_securityQuestionFragment" + app:destination="@id/securityQuestionFragment" /> + <action + android:id="@+id/action_nav_anastasis_authentication_to_smsFragment" + app:destination="@id/smsFragment" /> + <action + android:id="@+id/action_nav_anastasis_authentication_to_videoFragment" + app:destination="@id/videoFragment" /> + </fragment> + + <fragment + android:id="@+id/securityQuestionFragment" + android:name="net.taler.wallet.settings.SecurityQuestionFragment" + android:label="Security question" + tools:layout="@layout/fragment_security_question" /> + <fragment + android:id="@+id/smsFragment" + android:name="net.taler.wallet.settings.SmsFragment" + android:label="SMS" + tools:layout="@layout/fragment_sms" /> + <fragment + android:id="@+id/videoFragment" + android:name="net.taler.wallet.settings.VideoFragment" + android:label="Video identification" + tools:layout="@layout/fragment_video" /> <fragment android:id="@+id/nav_transactions" |