| 1234567891011121314151617181920212223242526272829 |
- # Add project specific ProGuard rules here.
- # By default, the flags in this file are appended to flags specified
- # in C:\Users\Administrator\AppData\Local\Android\Sdk/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:
- # If your project uses WebView with JS, uncomment the following
- # and specify the fully qualified class name to the JavaScript interface
- # class:
- #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
- # public *;
- #}
- #打印混淆信息
- -verbose
- #代码优化选项,不加该行会将没有用到的类删除,这里为了验证时间结果而使用,在实际生产环境中可根据实际需要选择是否使用
- -dontshrink
- -dontwarn android.support.annotation.Keep
- #保留注解,如果不添加改行会导致我们的@Keep注解失效
- -keepattributes *Annotation*
- -keep @android.support.annotation.Keep class **
- -keep class Jni.** { *; }
- -keep class VideoHandle.** { *; }
|