zoukankan      html  css  js  c++  java
  • 趣拍proguard配置

      

    # Add project specific ProGuard rules here.
    # By default, the flags in this file are appended to flags specified
    # in E:androidsdk/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 *;
    #}
    -dontwarn com.alibaba.**
    -keep class com.alibaba.**
    -keepclassmembers class com.alibaba.** {
    *;
    }
    -keep class com.taobao.**
    -keepclassmembers class com.taobao.** {
    *;
    }

    -dontwarn com.google.common.**
    -dontwarn com.amap.api.**
    -dontwarn net.jcip.annotations.**

    -keepattributes Annotation,EnclosingMethod,Signature

    -keep class com.duanqu.**
    -keepclassmembers class com.duanqu.** {
    *;
    }

    -dontwarn org.apache.http.**
    -keepclassmembers class org.apache.http.** {
    *;
    }
    -dontwarn com.taobao.update.**

    -dontwarn android.util.**

    -dontwarn com.google.auto.factory.**

    -dontwarn com.taobao.tae.sdk.callback.**

    -keepnames class com.fasterxml.jackson.** { *; }
    -dontwarn com.fasterxml.jackson.databind.**
    -keep class org.codehaus.** { *; }
    -keepclassmembers public final enum org.codehaus.jackson.annotate.JsonAutoDetect$Visibility {
    public static final org.codehaus.jackson.annotate.JsonAutoDetect$Visibility *; }
  • 相关阅读:
    zabbix客户端自动注册
    运维监控篇(2)_Zabbix简单的性能调优
    Zabbix unreachable poller processes more than 75% busy
    RabbitMQ 内存控制 硬盘控制
    RabbitMQ的Q&A
    RabbitMQ性能优化
    消息默认的属性
    RabbitMQ的Vhost,Exchange,Queue原理分析
    逻辑运算符(&& || and or)
    面向对象
  • 原文地址:https://www.cnblogs.com/shansheng/p/5044244.html
Copyright © 2011-2022 走看看