2021-04-30 17:20:15 +00:00
|
|
|
<?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"
|
2021-05-12 21:51:02 +00:00
|
|
|
app:startDestination="@+id/navigation_search">
|
2021-04-30 17:20:15 +00:00
|
|
|
|
2021-05-12 21:51:02 +00:00
|
|
|
<!-- <fragment
|
2021-04-30 17:20:15 +00:00
|
|
|
android:id="@+id/navigation_home"
|
|
|
|
android:name="com.lagradost.cloudstream3.ui.home.HomeFragment"
|
|
|
|
android:label="@string/title_home"
|
|
|
|
tools:layout="@layout/fragment_home"/>
|
2021-05-12 21:51:02 +00:00
|
|
|
-->
|
2021-04-30 17:20:15 +00:00
|
|
|
<fragment
|
2021-05-12 21:51:02 +00:00
|
|
|
android:id="@+id/navigation_search"
|
|
|
|
android:name="com.lagradost.cloudstream3.ui.search.SearchFragment"
|
|
|
|
android:label="@string/title_search"
|
|
|
|
tools:layout="@layout/fragment_search"/>
|
2021-04-30 17:20:15 +00:00
|
|
|
|
|
|
|
<fragment
|
|
|
|
android:id="@+id/navigation_notifications"
|
|
|
|
android:name="com.lagradost.cloudstream3.ui.notifications.NotificationsFragment"
|
2021-05-12 21:51:02 +00:00
|
|
|
android:label="@string/title_downloads"
|
2021-04-30 17:20:15 +00:00
|
|
|
tools:layout="@layout/fragment_notifications"/>
|
|
|
|
</navigation>
|