diff --git a/utils/src/main/java/one/nem/lacerta/utils/module/DeviceInfoUtilsModule.java b/utils/src/main/java/one/nem/lacerta/utils/module/DeviceInfoUtilsModule.java index 1673b81e..9f47b6b9 100644 --- a/utils/src/main/java/one/nem/lacerta/utils/module/DeviceInfoUtilsModule.java +++ b/utils/src/main/java/one/nem/lacerta/utils/module/DeviceInfoUtilsModule.java @@ -1,4 +1,16 @@ package one.nem.lacerta.utils.module; -public class DeviceInfoUtilsModule { +import dagger.Binds; +import dagger.Module; +import dagger.hilt.InstallIn; +import dagger.hilt.components.SingletonComponent; +import one.nem.lacerta.utils.repository.DeviceInfoUtils; +import one.nem.lacerta.utils.impl.DeviceInfoUtilsImpl; + +@Module +@InstallIn(SingletonComponent.class) // TODO-rca: Singletonである必要があるのか検討する? +abstract public class DeviceInfoUtilsModule { + + @Binds + public abstract DeviceInfoUtils bindDeviceInfoUtils(DeviceInfoUtilsImpl deviceInfoUtilsImpl); }