Skip to content

Instantly share code, notes, and snippets.

@LordRaydenMK
Created January 16, 2018 20:46
Show Gist options
  • Save LordRaydenMK/03545eabda63dc316a54b6cd64ca5b3a to your computer and use it in GitHub Desktop.
Save LordRaydenMK/03545eabda63dc316a54b6cd64ca5b3a to your computer and use it in GitHub Desktop.
Dagger dependency injection - network module
@Module
public class NetworkModule {
@Provides
OkHttpClient provideOkHttpClient() {
return new OkHttpClient.Builder()
.build();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment