Skip to content

Instantly share code, notes, and snippets.

@larkintuckerllc
Created November 29, 2017 01:07
Show Gist options
  • Save larkintuckerllc/c7eb16f72f14d343784b1c2e81c5595a to your computer and use it in GitHub Desktop.
Save larkintuckerllc/c7eb16f72f14d343784b1c2e81c5595a to your computer and use it in GitHub Desktop.
How-to Dagger 2 with Android: Part 2 - 4
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