From fd44892762f86ed625ffb048a19d33b51f438fda Mon Sep 17 00:00:00 2001 From: Leekangmin Date: Mon, 17 Jul 2023 17:09:29 +0900 Subject: [PATCH] =?UTF-8?q?[FEAT/#42]=20DataSource=20Mock=20->=20=EC=8B=A4?= =?UTF-8?q?=EC=84=9C=EB=B2=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/src/main/AndroidManifest.xml | 8 ++++---- app/src/main/java/com/yello/di/DataSourceModule.kt | 3 ++- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 9351be202..4eefa37d6 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -84,10 +84,10 @@ android:name=".presentation.main.profile.manage.ProfileQuitForSureActivity" android:exported="false" android:screenOrientation="portrait" /> - - - - + \ No newline at end of file diff --git a/app/src/main/java/com/yello/di/DataSourceModule.kt b/app/src/main/java/com/yello/di/DataSourceModule.kt index b257cd97f..3bdcf351f 100644 --- a/app/src/main/java/com/yello/di/DataSourceModule.kt +++ b/app/src/main/java/com/yello/di/DataSourceModule.kt @@ -4,6 +4,7 @@ import com.example.data.datasource.OnboardingDataSource import com.example.data.datasource.YelloDataSource import com.example.data.datasource.local.MockYelloDataSourceImpl import com.example.data.datasource.remote.OnboardingDataSourceImpl +import com.example.data.datasource.remote.YelloDataSourceImpl import dagger.Module import dagger.Provides import dagger.hilt.InstallIn @@ -15,7 +16,7 @@ import javax.inject.Singleton object DataSourceModule { @Provides @Singleton - fun provideYelloDataSource(yelloDataSource: MockYelloDataSourceImpl): YelloDataSource = + fun provideYelloDataSource(yelloDataSource: YelloDataSourceImpl): YelloDataSource = yelloDataSource @Provides