- notification handler pushes background and foreground notifications to the phone directly - firebase connection pushes remote notifications in background and foreground - firebase unique token currently logged only, should be send directly to server via rest
38 lines
1.4 KiB
XML
38 lines
1.4 KiB
XML
<?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/FirstFragment">
|
|
|
|
<fragment
|
|
android:id="@+id/FirstFragment"
|
|
android:name="com.maenle.bump.ui.FirstFragment"
|
|
android:label="@string/first_fragment_label"
|
|
tools:layout="@layout/fragment_first">
|
|
|
|
<action
|
|
android:id="@+id/action_FirstFragment_to_SecondFragment"
|
|
app:destination="@id/CameraFragment" />
|
|
</fragment>
|
|
<fragment
|
|
android:id="@+id/SecondFragment"
|
|
android:name="com.maenle.bump.ui.SecondFragment"
|
|
android:label="@string/second_fragment_label"
|
|
tools:layout="@layout/fragment_second">
|
|
|
|
<action
|
|
android:id="@+id/action_SecondFragment_to_FirstFragment"
|
|
app:destination="@id/FirstFragment" />
|
|
</fragment>
|
|
<fragment
|
|
android:id="@+id/CameraFragment"
|
|
android:name="com.maenle.bump.ui.CameraFragment"
|
|
android:label="@string/camera_fragment_label"
|
|
tools:layout="@layout/fragment_camera">
|
|
|
|
<action
|
|
android:id="@+id/action_SecondFragment_to_FirstFragment"
|
|
app:destination="@id/FirstFragment" />
|
|
</fragment>
|
|
</navigation> |