Created
November 29, 2017 01:07
-
-
Save larkintuckerllc/c7eb16f72f14d343784b1c2e81c5595a to your computer and use it in GitHub Desktop.
How-to Dagger 2 with Android: Part 2 - 4
This file contains 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
package com.larkintuckerllc.dagger.mocks; | |
import com.larkintuckerllc.dagger.MyComponent; | |
import javax.inject.Singleton; | |
import dagger.Component; | |
@Singleton | |
@Component(modules = MyModuleMock.class) | |
public interface MyComponentMock extends MyComponent { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment