android-kotlin-login-navigation icon indicating copy to clipboard operation
android-kotlin-login-navigation copied to clipboard

Results 7 android-kotlin-login-navigation issues
Sort by recently updated
recently updated
newest added

**Describe the problem** 1. LoginViewModel#getFactToDisplay contains error: ``` fun getFactToDisplay(context: Context): String { ... if (authenticationState == AuthenticationState.UNAUTHENTICATED || funFactType.equals( context.getString(R.string.fact_type_android) ) ) { return androidFacts[Random.nextInt(0, androidFacts.size)] } else {...

Step 6 Code sample for MainFragment.kt reads: ``` binding.settingsBtn.setOnClickListener { val action = MainFragmentDirections.actionMainFragmentToSettingsFragment() findNavController().navigate(action) } ``` **MainFragmentDirections** is not a thing in this project. Perhaps you mean: `findNavController().navigate(R.id.action_mainFragment_to_settingsFragment) `...

**Describe the problem** This project: https://developer.android.com/codelabs/advanced-android-kotlin-training-login-navigation seems to be out of date and replaced with https://developer.android.com/codelabs/advanced-android-kotlin-training-login ? For example, in the text we have `customizeFragment` but in the code it's...

**Describe the problem** There is a wrong id and destination - the correct action is `action_mainFragment_to_settingsFragment` (and not `action_mainFragment_to_customizeFragment` ) and the correct fragment is settingsFragment (and not `customizeFragment`) **In...

**Describe the problem** A clear and concise description of what the problem is. For people comming from the previous codelab (6.1 Login with Firebase) the gradle file is not setup...

**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...