diff options
author | Torsten Grote <t@grobox.de> | 2022-09-07 15:48:00 -0300 |
---|---|---|
committer | Torsten Grote <t@grobox.de> | 2022-09-07 15:48:56 -0300 |
commit | 6876951cb30f057a852937a533d5d51d26645680 (patch) | |
tree | 5466e478d10f165889200b5a6532c12635bf3028 /wallet/src/main/res/navigation | |
parent | 4fe04766fbf5328d0816f7cd862228a71690fd1c (diff) | |
download | taler-android-6876951cb30f057a852937a533d5d51d26645680.tar.gz taler-android-6876951cb30f057a852937a533d5d51d26645680.tar.bz2 taler-android-6876951cb30f057a852937a533d5d51d26645680.zip |
[wallet] implement prototype for handling incoming pay-push URI
Diffstat (limited to 'wallet/src/main/res/navigation')
-rw-r--r-- | wallet/src/main/res/navigation/nav_graph.xml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/wallet/src/main/res/navigation/nav_graph.xml b/wallet/src/main/res/navigation/nav_graph.xml index e3d526e..3170216 100644 --- a/wallet/src/main/res/navigation/nav_graph.xml +++ b/wallet/src/main/res/navigation/nav_graph.xml @@ -141,6 +141,16 @@ </fragment> <fragment + android:id="@+id/promptPullPayment" + android:name="net.taler.wallet.peer.PullPaymentFragment" + android:label="@string/pay_peer_title"> + <action + android:id="@+id/action_promptPullPayment_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" @@ -276,6 +286,10 @@ app:destination="@id/promptTip" /> <action + android:id="@+id/action_global_prompt_pull_payment" + app:destination="@id/promptPullPayment" /> + + <action android:id="@+id/action_global_pending_operations" app:destination="@id/nav_pending_operations" /> |