Skip to content

Commit

Permalink
chore(proguard-rules.pro): ApiResponse 관련 규칙 변경
Browse files Browse the repository at this point in the history
- allowobfuscation 추가
  • Loading branch information
ki960213 committed Dec 29, 2023
1 parent 5c64f91 commit 0c7a337
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions android/2023-emmsale/app/proguard-rules.pro
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@
# is used.
-keep,allowobfuscation,allowshrinking class kotlin.coroutines.Continuation

# ApiResponse 클래스 축소 및 난독화 해제하여 CallAdapter에서 retrofit2.Call<ApiResponse>를 반환하는 CallAdapter 만들 수 있도록 변경
-keepnames class com.emmsale.data.common.retrofit.callAdapter.ApiResponse
# ApiResponse 클래스의 타입 매개변수를 유지하기 위해 추가. 안하면 CallAdapter에서 retrofit2.Call<ApiResponse>를 반환하는 CallAdapter 만들 수 없음.
-keepnames, allowobfuscation class com.emmsale.data.common.retrofit.callAdapter.ApiResponse

0 comments on commit 0c7a337

Please sign in to comment.