navigation: Drop unused navigation_onboarding file

Signed-off-by: Aayush Gupta <aayushgupta219@gmail.com>
This commit is contained in:
Aayush Gupta
2023-05-21 11:00:57 +05:30
parent 3b79aa2407
commit 1d08d6dc42

View File

@@ -1,51 +0,0 @@
<?xml version="1.0" encoding="utf-8"?><!--
~ Aurora Store
~ Copyright (C) 2021, Rahul Kumar Patel <whyorean@gmail.com>
~
~ Aurora Store is free software: you can redistribute it and/or modify
~ it under the terms of the GNU General Public License as published by
~ the Free Software Foundation, either version 2 of the License, or
~ (at your option) any later version.
~
~ Aurora Store is distributed in the hope that it will be useful,
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
~ GNU General Public License for more details.
~
~ You should have received a copy of the GNU General Public License
~ along with Aurora Store. If not, see <http://www.gnu.org/licenses/>.
~
-->
<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/navigation_welcome">
<fragment
android:id="@+id/navigation_welcome"
android:name="com.aurora.store.view.ui.apps.AppsContainerFragment"
android:label="@string/onboarding_title_welcome"
tools:layout="@layout/fragment_onboarding_welcome">
<action
android:id="@+id/action_navigation_welcome_to_navigation_theme"
app:destination="@id/navigation_theme" />
</fragment>
<fragment
android:id="@+id/navigation_theme"
android:name="com.aurora.store.view.ui.games.GamesContainerFragment"
android:label="@string/onboarding_title_theme"
tools:layout="@layout/fragment_onboarding_theme">
<action
android:id="@+id/action_navigation_theme_to_navigation_installer"
app:destination="@id/navigation_installer" />
</fragment>
<fragment
android:id="@+id/navigation_installer"
android:name="com.aurora.store.view.ui.updates.UpdatesFragment"
android:label="@string/onboarding_title_installer"
tools:layout="@layout/fragment_onboarding_installer" />
</navigation>