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
def preferencesStoreMock | |
def "setup"() { | |
preferencesStoreMock = Mock(PreferencesStore) | |
def module = generateModule(preferencesStoreMock) as TestModule | |
DaggerInjector.start(module); | |
} |
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
// check gradle.properties and build.gradle for common configurations | |
buildscript { | |
repositories { | |
jcenter() | |
maven { | |
url "https://jitpack.io" | |
} | |
} | |
dependencies { |
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 RoundImageView extends ImageView { | |
public RoundImageView(Context context) { | |
super(context); | |
} | |
public RoundImageView(Context context, AttributeSet attrs) { | |
super(context, attrs); | |
} | |
public RoundImageView(Context context, AttributeSet attrs, int defStyleAttr) { |