Skip to content

Commit

Permalink
[FEAT/#42] DataSource Mock -> 실서버
Browse files Browse the repository at this point in the history
  • Loading branch information
kkk5474096 committed Jul 17, 2023
1 parent 3712fd9 commit fd44892
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
8 changes: 4 additions & 4 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,10 @@
android:name=".presentation.main.profile.manage.ProfileQuitForSureActivity"
android:exported="false"
android:screenOrientation="portrait" />




<activity
android:name=".presentation.main.myyello.read.MyYelloReadActivity"
android:exported="false"
android:screenOrientation="portrait" />
</application>

</manifest>
3 changes: 2 additions & 1 deletion app/src/main/java/com/yello/di/DataSourceModule.kt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -15,7 +16,7 @@ import javax.inject.Singleton
object DataSourceModule {
@Provides
@Singleton
fun provideYelloDataSource(yelloDataSource: MockYelloDataSourceImpl): YelloDataSource =
fun provideYelloDataSource(yelloDataSource: YelloDataSourceImpl): YelloDataSource =
yelloDataSource

@Provides
Expand Down

0 comments on commit fd44892

Please sign in to comment.