Created
February 7, 2019 12:37
-
-
Save matzuk/60b9558f242bd67199378ebedaf0d874 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
public class FeatureProxyInjector { | |
// another... | |
public static ScannerFeatureApi getFeatureScanner() { | |
return ScannerFeatureComponent.initAndGet( | |
DaggerScannerFeatureComponent_ScannerFeatureDependenciesComponent.builder() | |
.coreDbApi(CoreDbComponent.get()) | |
.coreNetworkApi(CoreNetworkComponent.get()) | |
.coreUtilsApi(CoreUtilsComponent.get()) | |
.purchaseFeatureApi(featurePurchaseGet()) | |
.build() | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment