Skip to content

Commit 59f20d9

Browse files
committed
release-1.0.0 chore: 직렬화 난독화 예외 설정
1 parent 3bb11ad commit 59f20d9

2 files changed

Lines changed: 8 additions & 4 deletions

File tree

app/proguard-rules.pro

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
-dontwarn org.conscrypt.*
2929
-dontwarn org.openjsse.**
3030

31+
# --- Retrofit ---
3132
# With R8 full mode generic signatures are stripped for classes that are not
3233
# kept. Suspend functions are wrapped in continuations where the type argument
3334
# is used.
@@ -42,4 +43,9 @@
4243
-keep,allowoptimization,allowshrinking,allowobfuscation class <3>
4344

4445
# With R8 full mode generic signatures are stripped for classes that are not kept.
45-
-keep,allowobfuscation,allowshrinking class retrofit2.Response
46+
-keep,allowobfuscation,allowshrinking class retrofit2.Response
47+
48+
-keep class com.moneymong.moneymong.network.request.** { *; }
49+
-keep class com.moneymong.moneymong.network.response.** { *; }
50+
-keep class com.moneymong.moneymong.domain.entity.** { *; }
51+
-keep class com.moneymong.moneymong.domain.param.** { *; }

core/network/build.gradle.kts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,14 @@ android {
1818
defaultConfig {
1919
buildConfigField("String", "CLOVA_OCR_DOCUMENT_SECRET", fetchClovaProperties("CLOVA_OCR_DOCUMENT_SECRET"))
2020
buildConfigField("String", "CLOVA_OCR_DOCUMENT_BASEURL", fetchClovaProperties("CLOVA_OCR_DOCUMENT_BASEURL"))
21-
22-
buildConfigField("String", "MONEYMONG_BASE_URL", "\"https://dev.moneymong.site/\"")
2321
}
2422

2523
buildTypes {
2624
debug {
2725
buildConfigField("String", "MONEYMONG_BASE_URL", "\"https://dev.moneymong.site/\"")
2826
}
2927
release {
30-
buildConfigField("String", "MONEYMONG_BASE_URL", "\"https://moneymong.site/\"")
28+
buildConfigField("String", "MONEYMONG_BASE_URL", "\"https://prod.moneymong.site/\"")
3129
}
3230
}
3331

0 commit comments

Comments
 (0)