Created
June 26, 2021 08:03
-
-
Save orcchg/ed59a756042a88e7b9b5eaa3679cabbc to your computer and use it in GitHub Desktop.
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
| @Component( | |
| dependencies = [ | |
| StockListFeatureApi::class | |
| ] | |
| ) | |
| internal interface StockListDemoActivityComponent { | |
| fun inject(target: StockListDemoActivity) | |
| @Component.Factory | |
| interface Factory { | |
| fun create( | |
| featureApi: StockListFeatureApi | |
| ): StockListDemoActivityComponent | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment