diff options
author | Torsten Grote <t@grobox.de> | 2022-09-07 16:28:04 -0300 |
---|---|---|
committer | Torsten Grote <t@grobox.de> | 2022-09-07 16:44:16 -0300 |
commit | e350d497abe560aeeef88081ae93d73135ece00f (patch) | |
tree | 0d13269331b16875e56fbafb8af8f9bdf3cfba77 /wallet/src/main/res/navigation | |
parent | 6876951cb30f057a852937a533d5d51d26645680 (diff) | |
download | taler-android-e350d497abe560aeeef88081ae93d73135ece00f.tar.gz taler-android-e350d497abe560aeeef88081ae93d73135ece00f.tar.bz2 taler-android-e350d497abe560aeeef88081ae93d73135ece00f.zip |
[wallet] implement prototype for handling incoming pay-pull URI
Diffstat (limited to 'wallet/src/main/res/navigation')
-rw-r--r-- | wallet/src/main/res/navigation/nav_graph.xml | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/wallet/src/main/res/navigation/nav_graph.xml b/wallet/src/main/res/navigation/nav_graph.xml index 3170216..f9060c5 100644 --- a/wallet/src/main/res/navigation/nav_graph.xml +++ b/wallet/src/main/res/navigation/nav_graph.xml @@ -131,7 +131,7 @@ <fragment android:id="@+id/nav_peer_pull" - android:name="net.taler.wallet.peer.PeerPullFragment" + android:name="net.taler.wallet.peer.OutgoingPullFragment" android:label="@string/receive_peer_title"> <argument android:name="amount" @@ -142,7 +142,7 @@ <fragment android:id="@+id/promptPullPayment" - android:name="net.taler.wallet.peer.PullPaymentFragment" + android:name="net.taler.wallet.peer.IncomingPullPaymentFragment" android:label="@string/pay_peer_title"> <action android:id="@+id/action_promptPullPayment_to_nav_main" @@ -151,6 +151,16 @@ </fragment> <fragment + android:id="@+id/promptPushPayment" + android:name="net.taler.wallet.peer.IncomingPushPaymentFragment" + android:label="@string/receive_peer_payment_title"> + <action + android:id="@+id/action_promptPushPayment_to_nav_main" + app:destination="@id/nav_main" + app:popUpTo="@id/nav_main" /> + </fragment> + + <fragment android:id="@+id/nav_transactions" android:name="net.taler.wallet.transactions.TransactionsFragment" android:label="@string/transactions_title" @@ -290,6 +300,10 @@ app:destination="@id/promptPullPayment" /> <action + android:id="@+id/action_global_prompt_push_payment" + app:destination="@id/promptPushPayment" /> + + <action android:id="@+id/action_global_pending_operations" app:destination="@id/nav_pending_operations" /> |