Skip to content
Merged
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
12 changes: 12 additions & 0 deletions app/proguard-rules.pro
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,18 @@
-keep class kotlin.** { *; }
-keep class kotlinx.coroutines.** { *; }

# Same hazard, libraries the app and plugins both ship: the app's shrunk copy
# shadows the plugin's complete one. Union of plugin deps that overlap the app;
# re-audit when a plugin adds one. See docs/research in plugin-examples.
-keep class androidx.fragment.app.** { *; }
-keep class androidx.appcompat.** { *; }
-keep class androidx.core.** { *; }
-keep class androidx.recyclerview.widget.** { *; }
-keep class androidx.constraintlayout.** { *; }
-keep class com.google.android.material.** { *; }
-keep class io.noties.markwon.** { *; }
-keep class com.google.gson.** { *; }
Comment thread
coderabbitai[bot] marked this conversation as resolved.
Comment thread
jatezzz marked this conversation as resolved.

-keep class com.google.firebase.** { *; }
-keep class com.google.android.gms.** { *; }

Expand Down
Loading