android / codelab-android-dagger

Apache License 2.0
181 stars 157 forks source link

Need to call the inject method from RegistrationActivity#onCreate #51

Open dgoldhirsch opened 3 years ago

dgoldhirsch commented 3 years ago

Step @Component describes the need for an #inject method to be used by the RegistrationActivity, but omits to call that method from the #onCreate method of that activity. The student should be told to add

(application as MyApplication).appComponent.inject(this)

before anything else happens, in #onCreate.