This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//SHALL WE BEGIN? | |
//FILE 1 - THE MODULE | |
@Module //MODULE IS WHAT YOU WANT TO INSTANTIATE. | |
public class UserLoginModule { | |
@Provides //@PROVIDES RELEASE THE OBJECT TO INJECTION. | |
@PerActivity //@PERACTIVITY IS THE SCOPE, LIKE BOUNDS WHERE YOU CAN USE THAT. | |
public UserModel getUser(){ |
NewerOlder