Chepuhagram/android/app/proguard-rules.pro

15 lines
577 B
Prolog
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Защита ffmpeg-kit от R8
-keep class com.arthenica.ffmpegkit.** { *; }
-keep interface com.arthenica.ffmpegkit.** { *; }
# Защита от удаления нативных методов JNI
-keepclassmembers class * {
native <methods>;
}
# Если используете конкретно ваш форк, добавим и его:
-keep class com.antonkarpenko.ffmpegkit.** { *; }
# Защита Firebase (если падает Firebase, когда включен R8)
-keep class com.google.firebase.** { *; }
-keep class com.google.android.gms.** { *; }