media3/libraries/decoder_flac/proguard-rules.txt
Andrew Lewis 933e207b3e Update to androidx.media3
PiperOrigin-RevId: 405656499
2021-10-27 09:12:46 +01:00

18 lines
487 B
Plaintext

# Proguard rules specific to the Flac extension.
# This prevents the names of native methods from being obfuscated.
-keepclasseswithmembernames class * {
native <methods>;
}
# Some members of these classes are being accessed from native methods. Keep them unobfuscated.
-keep class androidx.media3.decoder.flac.FlacDecoderJni {
*;
}
-keep class androidx.media3.extractor.FlacStreamMetadata {
*;
}
-keep class androidx.media3.extractor.metadata.flac.PictureFrame {
*;
}