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