23 lines
562 B
Prolog
23 lines
562 B
Prolog
# Add project specific ProGuard rules here.
|
|
# You can control the set of applied configuration files using the
|
|
# proguardFiles setting in build.gradle.
|
|
|
|
# VavCore JNI methods should not be obfuscated
|
|
-keep class com.vavcore.VavCore {
|
|
native <methods>;
|
|
public static <methods>;
|
|
}
|
|
|
|
# Keep all native method declarations
|
|
-keepclasseswithmembernames class * {
|
|
native <methods>;
|
|
}
|
|
|
|
# Android MediaCodec related classes
|
|
-keep class android.media.** { *; }
|
|
-dontwarn android.media.**
|
|
|
|
# Standard Android rules for NDK
|
|
-keep class * {
|
|
native <methods>;
|
|
} |