althaf
05/02/2023, 1:52 PM<navigation xmlns:android="<http://schemas.android.com/apk/res/android>"
xmlns:app="<http://schemas.android.com/apk/res-auto>"
android:id="@+id/nav_graph"
app:startDestination="@id/splash_fragment">
<fragment
android:id="@+id/splash_fragment"
android:name="com.platform.tv.feature.onboarding.ui.SplashFragment">
>>>>> <deepLink app:uri="<ottdns.com://com.ott.dns/splash>" />
<action
android:id="@+id/action_splash_to_showcase"
app:destination="@id/showcase_fragment"
app:popUpTo="@+id/nav_graph"
app:popUpToInclusive="true" />
</fragment>
to
<navigation xmlns:android="<http://schemas.android.com/apk/res/android>"
xmlns:app="<http://schemas.android.com/apk/res-auto>"
android:id="@+id/nav_graph"
app:startDestination="@id/splash_fragment">
<fragment
android:id="@+id/splash_fragment"
android:name="com.ott.dns.platform.tv.feature.onboarding.ui.SplashFragment">
>>> <deepLink app:uri="@string/deep_link_splash" />
<action
android:id="@+id/action_splash_to_showcase"
app:destination="@id/showcase_fragment"
app:popUpTo="@+id/nav_graph"
app:popUpToInclusive="true" />
</fragment>
Chrimaeon
05/02/2023, 6:07 PM