Created
June 17, 2018 19:20
-
-
Save v170nix/76b1db09e7c3efbf861ac8cafc6624f7 to your computer and use it in GitHub Desktop.
Revisions
-
v170nix created this gist
Jun 17, 2018 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,14 @@ @Singleton @Component(modules = [AndroidSupportInjectionModule::class, ...]) interface AppComponent { @Component.Builder interface Builder { @BindsInstance fun application(context: Context): Builder fun build(): AppComponent } fun inject(application: AppApplication) }