proguard-rules.pro 870 B

12345678910111213141516171819202122232425
  1. # Add project specific ProGuard rules here.
  2. # By default, the flags in this file are appended to flags specified
  3. # in /usr/local/Cellar/android-sdk/24.3.3/tools/proguard/proguard-android.txt
  4. # You can edit the include path and order by changing the proguardFiles
  5. # directive in build.gradle.
  6. #
  7. # For more details, see
  8. # http://developer.android.com/guide/developing/tools/proguard.html
  9. # Add any project specific keep options here:
  10. #Flutter Wrapper
  11. -keep class io.flutter.app.** { *; }
  12. -keep class io.flutter.plugin.** { *; }
  13. -keep class io.flutter.util.** { *; }
  14. -keep class io.flutter.view.** { *; }
  15. -keep class io.flutter.** { *; }
  16. -keep class io.flutter.plugins.** { *; }
  17. # Flutter FFmpeg
  18. -keep class com.arthenica.mobileffmpeg.Config {
  19. native <methods>;
  20. void log(int, byte[]);
  21. void statistics(int, float, float, long , int, double, double);
  22. }