From 2c2a0b1a536810761a11da6e05378b7a89ed96e7 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 31 Aug 2023 05:51:20 +0000 Subject: chore(deps): update hilt to v2.48 (#2668) * chore(deps): update hilt to v2.48 * fix: remove unsupported extension syntax --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Harsh Shandilya --- .../java/app/passwordstore/injection/coroutines/DispatcherModule.kt | 2 +- app/src/main/java/app/passwordstore/injection/totp/TotpModule.kt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'app') diff --git a/app/src/main/java/app/passwordstore/injection/coroutines/DispatcherModule.kt b/app/src/main/java/app/passwordstore/injection/coroutines/DispatcherModule.kt index 3539845f..27af356d 100644 --- a/app/src/main/java/app/passwordstore/injection/coroutines/DispatcherModule.kt +++ b/app/src/main/java/app/passwordstore/injection/coroutines/DispatcherModule.kt @@ -15,5 +15,5 @@ import dagger.hilt.components.SingletonComponent @Module @InstallIn(SingletonComponent::class) interface DispatcherModule { - @Binds fun DefaultDispatcherProvider.bind(): DispatcherProvider + @Binds fun bindDispatcherProvider(impl: DefaultDispatcherProvider): DispatcherProvider } diff --git a/app/src/main/java/app/passwordstore/injection/totp/TotpModule.kt b/app/src/main/java/app/passwordstore/injection/totp/TotpModule.kt index ed9435ed..b0b1ec15 100644 --- a/app/src/main/java/app/passwordstore/injection/totp/TotpModule.kt +++ b/app/src/main/java/app/passwordstore/injection/totp/TotpModule.kt @@ -15,5 +15,5 @@ import dagger.hilt.android.components.ActivityComponent @Module @InstallIn(ActivityComponent::class) interface TotpModule { - @Binds fun UriTotpFinder.bind(): TotpFinder + @Binds fun bindTotpFinder(impl: UriTotpFinder): TotpFinder } -- cgit v1.2.3