We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 339d42b commit a625854Copy full SHA for a625854
core/data/src/main/java/com/yapp/core/data/remote/di/NetworkModule.kt
@@ -26,12 +26,7 @@ import javax.inject.Singleton
26
@InstallIn(SingletonComponent::class)
27
internal object NetworkModule {
28
29
- private val BASE_URL: String
30
- get() = if (BuildConfig.DEBUG) {
31
- "https://dev-yappuworld.yapp.co.kr/"
32
- } else {
33
- "https://api-yappuworld.yapp.co.kr/"
34
- }
+ private const val BASE_URL: String = BuildConfig.BASE_URL
35
36
@Singleton
37
@Provides
0 commit comments