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