Skip to content

Commit

Permalink
[feat] #212 proguard-rules 설정해서, 특정 파일은 최적화 안되게 하기
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan2dani committed Sep 30, 2023
1 parent 49bb2ba commit 8d0681b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
8 changes: 7 additions & 1 deletion app/proguard-rules.pro
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,10 @@

# If you keep the line number information, uncomment this to
# hide the original source file name.
#-renamesourcefileattribute SourceFile
#-renamesourcefileattribute SourceFile
-keep class com.kakao.sdk.**.model.* { <fields>; }
-keep class * extends com.google.gson.TypeAdapter

-keepnames class * extends android.os.Parcelable
-keepnames class * extends java.io.Serializable
-keep class com.sopt.geonppang.data.** { *; }
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ class LogInViewModel @Inject constructor(
Timber.tag("서버 오류")
}
}.onFailure { throwable ->
Timber.tag("로그인 실패 on Failure").e(throwable.message)
Timber.tag("로그인 실패 on Failure").e(throwable)
}
}
}
Expand Down
2 changes: 0 additions & 2 deletions app/src/main/res/layout/activity_login.xml
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,4 @@
app:rippleColor="@color/main_3" />

</androidx.constraintlayout.widget.ConstraintLayout>


</layout>

0 comments on commit 8d0681b

Please sign in to comment.