NetworkModule

@Module
class NetworkModule

It contains all required functionality to make retrofit calls easier and convenient to understand. Created at : December 24, 2021

Author

Darshan Bhanushali

Constructors

Link copied to clipboard
fun NetworkModule()

Functions

Link copied to clipboard
@Provides
@Singleton
fun provideApi(retrofit: Retrofit): API
Link copied to clipboard
@Singleton
@Provides
fun provideApplication(app: Context): App
Link copied to clipboard
@Provides
@Singleton
fun provideContext(application: App): Context
Link copied to clipboard
@Provides
@Singleton
fun provideHeaderInterceptor(): Interceptor
Link copied to clipboard
@Provides
@Singleton
fun provideOkHttpClient(headerInterceptor: Interceptor, cache: Cache): OkHttpClient
Link copied to clipboard
@Provides
@Singleton
fun provideRetrofit(client: OkHttpClient): Retrofit