NetworkModule

@Module
object NetworkModule

Provides network-related dependencies using Dagger Hilt.

This module includes methods to provide instances of Retrofit, OkHttpClient, authentication credentials, and various services used in the application.

Functions

Link copied to clipboard
@Provides
@Singleton
fun getAuthentication(retrofit: Retrofit): AuthenticationService

Provides an instance of AuthenticationService.

Link copied to clipboard
@Provides
@Singleton
fun getCollection(retrofit: Retrofit): CollectionService

Provides an instance of CollectionService.

Link copied to clipboard
@Provides
@Singleton
fun getCommonService(retrofit: Retrofit): CommonService

Provides an instance of CommonService.

Link copied to clipboard
@Provides
@Singleton
fun getDisbursement(retrofit: Retrofit): DisbursementsService

Provides an instance of DisbursementsService.

Link copied to clipboard

Provides an instance of AccessTokenCredentials.

Link copied to clipboard
@Provides
@Singleton
fun provideApiAuthenticator(basicAuthCredentials: BasicAuthCredentials, accessTokenCredentials: AccessTokenCredentials): AuthInterface

Provides an instance of AuthInterface.

Link copied to clipboard

Provides an instance of BasicAuthCredentials.

Link copied to clipboard
@Provides
@Singleton
fun provideGson(): Gson

Provides an instance of Gson.

Link copied to clipboard
@Provides
@Singleton
fun provideOkHttpClient(httpLoggingInterceptor: HttpLoggingInterceptor, basicAuthCredentials: BasicAuthCredentials, accessTokenCredentials: AccessTokenCredentials, baseUrl: String): OkHttpClient

Provides an instance of OkHttpClient.

Link copied to clipboard
@Provides
@Singleton
fun provideRetrofit(okHttpClient: OkHttpClient, gson: Gson, baseUrl: String): Retrofit

Provides an instance of Retrofit.

Link copied to clipboard
@Provides
@Singleton
fun providesBaseUrl(): String

Provides the base URL for the API.

Link copied to clipboard
@Provides
@Singleton
fun providesHttpLoggingInterceptor(): HttpLoggingInterceptor

Provides an instance of HttpLoggingInterceptor.