Skip to content

Commit 86d409c

Browse files
committed
Hotfix fix: 라이브러리 빌드용 브랜치 생성
1 parent cc38bd8 commit 86d409c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

app/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ android {
2626
multiDexEnabled = true
2727
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
2828

29-
buildConfigField "String", "HOLIDAY_API_KEY", properties['holiday_api_key']
29+
//buildConfigField "String", "HOLIDAY_API_KEY", properties['holiday_api_key']
3030
}
3131

3232
buildTypes {

app/src/main/java/com/drunkenboys/calendarun/data/holiday/remote/HolidayRemoteService.kt

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,31 +13,31 @@ interface HolidayRemoteService {
1313
@Query("solYear") year: String,
1414
@Query("pageNo") pageNo: Int,
1515
@Query("_type") type: String = "json",
16-
@Query("ServiceKey") serviceKey: String = BuildConfig.HOLIDAY_API_KEY
16+
@Query("ServiceKey") serviceKey: String = ""
1717
): ResponseHolidayListInfo
1818

1919
@GET("/B090041/openapi/service/SpcdeInfoService/getRestDeInfo")
2020
suspend fun fetchHolidayListOnMonth(
2121
@Query("solYear") year: String,
2222
@Query("solMonth") month: String,
2323
@Query("_type") type: String = "json",
24-
@Query("ServiceKey") serviceKey: String = BuildConfig.HOLIDAY_API_KEY
24+
@Query("ServiceKey") serviceKey: String = ""
2525
): ResponseHolidayListInfo
2626

2727
@GET("/B090041/openapi/service/SpcdeInfoService/getRestDeInfo")
2828
suspend fun fetchHolidayOnYear(
2929
@Query("solYear") year: String,
3030
@Query("pageNo") pageNo: Int,
3131
@Query("_type") type: String = "json",
32-
@Query("ServiceKey") serviceKey: String = BuildConfig.HOLIDAY_API_KEY
32+
@Query("ServiceKey") serviceKey: String = ""
3333
): ResponseHolidayInfo
3434

3535
@GET("/B090041/openapi/service/SpcdeInfoService/getRestDeInfo")
3636
suspend fun fetchHolidayOnMonth(
3737
@Query("solYear") year: String,
3838
@Query("solMonth") month: String,
3939
@Query("_type") type: String = "json",
40-
@Query("ServiceKey") serviceKey: String = BuildConfig.HOLIDAY_API_KEY
40+
@Query("ServiceKey") serviceKey: String = ""
4141
): ResponseHolidayInfo
4242

4343
}

0 commit comments

Comments
 (0)