aboutsummaryrefslogtreecommitdiff
path: root/app/src/main
diff options
context:
space:
mode:
authorrenovate[bot] <29139614+renovate[bot]@users.noreply.github.com>2023-08-31 05:51:20 +0000
committerGitHub <noreply@github.com>2023-08-31 05:51:20 +0000
commit2c2a0b1a536810761a11da6e05378b7a89ed96e7 (patch)
treefe6f9db7839436ce493b4122df218a15548731f2 /app/src/main
parent8f950fb83e1a05ffbc86ee5f76e6b94c7bba95b5 (diff)
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 <me@msfjarvis.dev>
Diffstat (limited to 'app/src/main')
-rw-r--r--app/src/main/java/app/passwordstore/injection/coroutines/DispatcherModule.kt2
-rw-r--r--app/src/main/java/app/passwordstore/injection/totp/TotpModule.kt2
2 files changed, 2 insertions, 2 deletions
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
}