Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

kuring-139 [수정] 난독화 보호 경로 수정 #100

Merged
merged 2 commits into from
Mar 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/kotlinc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

32 changes: 26 additions & 6 deletions app/proguard-rules.pro
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,32 @@
# If you keep the line number information, uncomment this to
# hide the original source file name.
#-renamesourcefileattribute SourceFile
-keep class com.ku_stacks.ku_ring.data.api.request.** { *; }
-keep class com.ku_stacks.ku_ring.data.api.response.** { *; }
-keep class com.ku_stacks.ku_ring.data.db.** { *; }
-keep class com.ku_stacks.ku_ring.data.model.** { *; }
-keep class com.ku_stacks.ku_ring.data.websocket.response.** { *; }
-keep class com.ku_stacks.ku_ring.data.websocket.request.** { *; }
# request, reponse data class which are used with Retrofit
-keep class com.ku_stacks.ku_ring.remote.department.request.** { *; }
-keep class com.ku_stacks.ku_ring.remote.department.response.** { *; }
-keep class com.ku_stacks.ku_ring.remote.notice.request.** { *; }
-keep class com.ku_stacks.ku_ring.remote.notice.response.** { *; }
-keep class com.ku_stacks.ku_ring.remote.notice.** { *; }
-keep class com.ku_stacks.ku_ring.remote.staff.response.** { *; }
-keep class com.ku_stacks.ku_ring.remote.user.request.** { *; }
-keep class com.ku_stacks.ku_ring.remote.util.** { *; }
# Room DAO, entity
-keep class com.ku_stacks.ku_ring.local.entity.** { *; }
-keep class com.ku_stacks.ku_ring.local.room.** { *; }
# domain classes
-keep class com.ku_stacks.ku_ring.domain.** { *; }
# rxjava classes
-keep class io.reactivex.rxjava3.core.Flowable
-keep class io.reactivex.rxjava3.core.Maybe
-keep class io.reactivex.rxjava3.core.Observable
-keep class io.reactivex.rxjava3.core.Single
# Keep generic signature of Call, Response (R8 full mode strips signatures from non-kept items).
-keep interface retrofit2.Call
-keep class retrofit2.Response
# With R8 full mode generic signatures are stripped for classes that are not
# kept. Suspend functions are wrapped in continuations where the type argument
# is used.
-keep class kotlin.coroutines.Continuation
-dontwarn com.sendbird.android.shadow.**
-dontwarn com.google.firebase.messaging.TopicOperation$TopicOperations
-dontwarn org.bouncycastle.jsse.BCSSLParameters
Expand Down
Loading