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)
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
before anything else happens, in #onCreate.