summaryrefslogtreecommitdiff
path: root/app/src/main/res/navigation/nav_graph.xml
blob: eaa7bf9f0e5bc9ad326d807f50de2058a3437744 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?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/nav_graph"
            app:startDestination="@id/createPayment">

    <fragment android:id="@+id/createPayment" android:name="net.taler.merchantpos.CreatePayment"
              android:label="fragment_create_payment" tools:layout="@layout/fragment_create_payment"/>
    <fragment android:id="@+id/processPayment" android:name="net.taler.merchantpos.ProcessPayment"
              android:label="fragment_process_payment" tools:layout="@layout/fragment_process_payment"/>
    <action android:id="@+id/action_global_processPayment" app:destination="@id/processPayment"/>
</navigation>