Ph0tonic/SDP_Projet

View on GitHub
app/src/main/res/navigation/mobile_navigation.xml

Summary

Maintainability
Test Coverage
<?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/mobile_navigation"
    app:startDestination="@+id/nav_home">

    <fragment
        android:id="@+id/nav_home"
        android:name="ch.epfl.sdp.ui.home.HomeFragment"
        android:label="@string/menu_home"
        tools:layout="@layout/fragment_home" />

    <fragment
        android:id="@+id/nav_maps_managing"
        android:name="ch.epfl.sdp.ui.maps.offline.MapsManagingFragment"
        android:label="@string/menu_maps_managing"
        tools:layout="@layout/fragment_maps_managing" />

</navigation>