Skip to content

Commit

Permalink
[feature/force_update] retrofit2.create를 이용한 로직으로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
librarywon committed Jul 31, 2024
1 parent 8f63821 commit c475f23
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import dagger.Provides
import dagger.hilt.InstallIn
import dagger.hilt.components.SingletonComponent
import retrofit2.Retrofit
import retrofit2.create
import javax.inject.Singleton

@Module
Expand All @@ -19,7 +20,7 @@ object RemoteConfigModule {
@Provides
@Singleton
fun provideMinimumVersionService(@Secured retrofit: Retrofit): MinimumVersionService =
retrofit.create(MinimumVersionService::class.java)
retrofit.create()

@Module
@InstallIn(SingletonComponent::class)
Expand Down

0 comments on commit c475f23

Please sign in to comment.