google-developer-training / advanced-android-kotlin-login-navigation

Other
46 stars 33 forks source link

Advanced Android in Kotlin: Login 6.2 [Step #][description] #6

Open Dubry opened 4 years ago

Dubry commented 4 years ago

Describe the problem A clear and concise description of what the problem is.

Misnamed id and destination.

The instruction says to

Add an action inside mainFragment. The id of the action is action_mainFragment_to_customizeFragment, and the destination is customizeFragment.

while the code and the entire section is about adding a settings fragment. <fragment android:id="@+id/mainFragment" android:name="com.example.android.firebaseui_login_sample.MainFragment" android:label="MainFragment"> <action android:id="@+id/**action_mainFragment_to_settingsFragment**" app:destination="@id/**settingsFragment**"/> </fragment>

In which lesson and step of the codelab can this issue be found? Lesson number + step number. (e.g., Lesson 6.2, Step 1.3)

Advanced Android in Kotlin 06.2: Android Conditional Navigation with Login step 5

How to reproduce? What are the exact steps to reproduce the problem? Go to step 5 and read the instructions (specifically 4. and 6.)

Versions

  1. What version of Android Studio are you using? Not relevant
  2. What API level are you targeting? Not relevant

Additional information Add any other context about the problem here.

codelab: advanced-android-kotlin