1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- # Add project specific ProGuard rules here.
- # You can control the set of applied configuration files using the
- # proguardFiles setting in build.gradle.
- #
- # For more details, see
- # http://developer.android.com/guide/developing/tools/proguard.html
- # 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 *;
- #}
- # Uncomment this to preserve the line number information for
- # debugging stack traces.
- #-keepattributes SourceFile,LineNumberTable
- # If you keep the line number information, uncomment this to
- # hide the original source file name.
- #-renamesourcefileattribute SourceFile
- -keep class com.huawei.tools.**{*;}
- -keep class com.huawei.ability.**{*;}
- -keep class org.kxml2.**{*;}
- -keep class org.xmlpull.**{*;}
- -keep class com.google.**{*;}
- -keep class org.tantalum.**{*;}
- -keep class android.**{*;}
- -keep class assets.**{*;}
- -keep class com.android.**{*;}
- -keep class java.**{*;}
- -keep class javax.**{*;}
- -keep class junit.**{*;}
- -keep class org.**{*;}
- -keep class res.**{*;}
- -keep public class * extends android.content.ContextWrapper
- -keep public class * extends com.odin.framework.foundation.BasePluginActivity
- -keep public class * extends com.odin.framework.foundation.BasePluginService
- -keep class com.odin.framework{*;}
- -keep class com.odin.framework.utils.FileUtil{*;}
- -keep class com.odin.framework.utils.StringUtil{*;}
- -keep class com.odin.framework.utils.ThreadUtil{*;}
- -keep class com.odin.framework.proxy.ProxyManager{*;}
- -keep class com.odin.framework.plugable.Logger{*;}
- -keep class com.odin.framework.foundation.Framework{*;}
- -keep class com.odin.framework.foundation.ExposedService{*;}
- -keep class com.odin.framework.foundation.PluginInfo{*;}
- -keep class com.odin.plugable.api.**{*;}
- -keep class com.sdk.plugable.ability.log.LogImpl{*;}
- -keepattributes InnerClasses
- #Dynamic R File
- -keep class com.huawei.digital.tv.R{*;}
- -keep class com.huawei.digital.tv.R$*{*;}
- #plugin_in R File
- -keep class com.odin_plugin.R{*;}
- -keep class com.haochuan.dudutoy.R{*;}
- -keep class com.haochuan.dudutoy.R$*{*;}
- -keep class com.shuyu.gsyvideoplayer.video.** { *; }
- -dontwarn com.shuyu.gsyvideoplayer.video.**
- -keep class com.shuyu.gsyvideoplayer.video.base.** { *; }
- -dontwarn com.shuyu.gsyvideoplayer.video.base.**
- -keep class com.shuyu.gsyvideoplayer.utils.** { *; }
- -dontwarn com.shuyu.gsyvideoplayer.utils.**
- -keep class tv.danmaku.ijk.** { *; }
- -dontwarn tv.danmaku.ijk.**
- -keep public class * extends android.view.View{
- *** get*();
- void set*(***);
- public <init>(android.content.Context);
- public <init>(android.content.Context, android.util.AttributeSet);
- public <init>(android.content.Context, android.util.AttributeSet, int);
- }
|