mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-22 16:03:15 +00:00
namespaces間違えていたので修正
This commit is contained in:
parent
7add8bcc39
commit
309b425e2c
|
@ -1,4 +1,4 @@
|
|||
package oen.nem.lacerta.utils;
|
||||
package one.nem.lacerta.utils;
|
||||
|
||||
import android.content.Context;
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package oen.nem.lacerta.utils.impl;
|
||||
package one.nem.lacerta.utils.impl;
|
||||
|
||||
import android.content.Context;
|
||||
|
||||
|
@ -9,7 +9,7 @@ import javax.inject.Inject;
|
|||
|
||||
import dagger.hilt.android.qualifiers.ApplicationContext;
|
||||
|
||||
import oen.nem.lacerta.utils.repository.FileUtils;
|
||||
import one.nem.lacerta.utils.repository.FileUtils;
|
||||
|
||||
public class FileUtilsImpl implements FileUtils {
|
||||
|
|
@ -1,16 +1,17 @@
|
|||
package oen.nem.lacerta.utils.module;
|
||||
package one.nem.lacerta.utils.module;
|
||||
|
||||
import dagger.Binds;
|
||||
import dagger.Module;
|
||||
import dagger.hilt.InstallIn;
|
||||
import dagger.hilt.components.SingletonComponent;
|
||||
import one.nem.lacerta.data.utils.UtilsImpl;
|
||||
import one.nem.lacerta.data.utils.UtilsRepo;
|
||||
import one.nem.lacerta.utils.repository.FileUtils;
|
||||
import one.nem.lacerta.utils.impl.FileUtilsImpl;
|
||||
|
||||
@Module
|
||||
@InstallIn(SingletonComponent.class)
|
||||
abstract public class FileUtilsModule {
|
||||
|
||||
@Binds
|
||||
public abstract UtilsRepo bindUtils(UtilsImpl utilsImpl);
|
||||
|
||||
|
||||
}
|
|
@ -1,4 +1,4 @@
|
|||
package oen.nem.lacerta.utils.repository;
|
||||
package one.nem.lacerta.utils.repository;
|
||||
|
||||
import java.nio.file.Path;
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package oen.nem.lacerta.utils;
|
||||
package one.nem.lacerta.utils;
|
||||
|
||||
import org.junit.Test;
|
||||
|
Loading…
Reference in New Issue
Block a user