Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?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/main_nav_graph"
- app:startDestination="@id/splashFragment">
- <fragment
- android:id="@+id/signInFragment"
- android:name="app.netlify.accessdeniedgc.classko.ui.signin.SignInFragment"
- android:label="fragment_sign_in"
- tools:layout="@layout/fragment_sign_in" >
- <action
- android:id="@+id/action_signInFragment_to_classActivity"
- app:destination="@id/classActivity"
- app:launchSingleTop="true"
- app:popUpTo="@id/splashFragment"
- app:popUpToInclusive="true" />
- </fragment>
- <fragment
- android:id="@+id/splashFragment"
- android:name="app.netlify.accessdeniedgc.classko.ui.splash.SplashFragment"
- android:label="fragment_splash"
- tools:layout="@layout/fragment_splash" >
- <action
- android:id="@+id/action_splashFragment_to_signInFragment"
- app:destination="@id/signInFragment"
- app:launchSingleTop="true"
- app:popUpTo="@id/splashFragment"
- app:popUpToInclusive="true" />
- </fragment>
- <activity
- android:id="@+id/classActivity"
- android:name="app.netlify.accessdeniedgc.classko.ui.class.ClassActivity"
- android:label="activity_class"
- tools:layout="@layout/activity_class" />
- </navigation>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement