mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-26 09:43: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;
|
import android.content.Context;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package oen.nem.lacerta.utils.impl;
|
package one.nem.lacerta.utils.impl;
|
||||||
|
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@ import javax.inject.Inject;
|
||||||
|
|
||||||
import dagger.hilt.android.qualifiers.ApplicationContext;
|
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 {
|
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.Binds;
|
||||||
import dagger.Module;
|
import dagger.Module;
|
||||||
import dagger.hilt.InstallIn;
|
import dagger.hilt.InstallIn;
|
||||||
import dagger.hilt.components.SingletonComponent;
|
import dagger.hilt.components.SingletonComponent;
|
||||||
import one.nem.lacerta.data.utils.UtilsImpl;
|
import one.nem.lacerta.utils.repository.FileUtils;
|
||||||
import one.nem.lacerta.data.utils.UtilsRepo;
|
import one.nem.lacerta.utils.impl.FileUtilsImpl;
|
||||||
|
|
||||||
@Module
|
@Module
|
||||||
@InstallIn(SingletonComponent.class)
|
@InstallIn(SingletonComponent.class)
|
||||||
abstract public class FileUtilsModule {
|
abstract public class FileUtilsModule {
|
||||||
|
|
||||||
@Binds
|
@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;
|
import java.nio.file.Path;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package oen.nem.lacerta.utils;
|
package one.nem.lacerta.utils;
|
||||||
|
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user