不能用护卫缩小慌乱

2022-09-02 05:09:16

这是我的proguard配置(我从Android工具文件夹中复制了它并添加了一些行)。

-optimizations !code/simplification/arithmetic,!code/simplification/cast,!field/*,!class/merging/*
-optimizationpasses 5
-allowaccessmodification
-dontpreverify
    
# The remainder of this file is identical to the non-optimized version
# of the Proguard configuration file (except that the other file has
# flags to turn off optimization).

-dontusemixedcaseclassnames
-dontskipnonpubliclibraryclasses
-verbose

-keepattributes *Annotation*
-keep public class com.google.vending.licensing.ILicensingService
-keep public class com.android.vending.licensing.ILicensingService

# For native methods, see http://proguard.sourceforge.net/manual/examples.html#native
-keepclasseswithmembernames class * {
    native <methods>;
}

# keep setters in Views so that animations can still work.
# see http://proguard.sourceforge.net/manual/examples.html#beans
-keepclassmembers public class * extends android.view.View {
   void set*(***);
   *** get*();
}

# We want to keep methods in Activity that could be used in the XML attribute onClick
-keepclassmembers class * extends android.app.Activity {
   public void *(android.view.View);
}

# For enumeration classes, see http://proguard.sourceforge.net/manual/examples.html#enumerations
-keepclassmembers enum * {
    public static **[] values();
    public static ** valueOf(java.lang.String);
}

-keep class * implements android.os.Parcelable {
  public static final android.os.Parcelable$Creator *;
}

-keepclassmembers class **.R$* {
    public static <fields>;
}

# The support library contains references to newer platform versions.
# Don't warn about those in case this app is linking against an older
# platform version.  We know about them, and they are safe.
-dontwarn android.support.**

######################
# added by me
########################
# guava
-keepclasseswithmembers class com.google.common.base.internal.Finalizer{
    <methods>;
}

-dontwarn sun.misc.Unsafe
-dontwarn com.google.common.collect.MinMaxPriorityQueue

#
#Action Bar Sherlock
-keep class android.support.v4.app.** { *; }
-keep interface android.support.v4.app.** { *; }
-keep class com.actionbarsherlock.** { *; }
-keep interface com.actionbarsherlock.** { *; }


#-dontobfuscate    
#-libraryjars libs/FlurryAgent.jar

我想在我的应用程序中使用Flurry,但是当我尝试用FlurryAgen混淆我的应用程序时.jar proguard失败了,说出了几十个错误,如下所示:

Warning: com.flurry.android.ay: can't find referenced class com.google.ads.AdListener

同样,当我尽量不混淆来源时,proguard也会失败。

如何与护卫一起使用慌乱?如何使proguard不混淆我的消息来源?

更新我还提到,FlurryAgent.jar似乎已经混淆了-http://korniltsev.ru/p/jBU0f1c.png。也许我们可以忽略缩小整个罐子?


答案 1

最后,我设法做到了这一点:

-keep class com.flurry.** { *; }
-dontwarn com.flurry.**

答案 2

Korniltsev的答案对我有用,但是新的flurry SDK(3.2.2)建议添加以下内容:

-keep class com.flurry.** { *; }
-dontwarn com.flurry.**
-keepattributes *Annotation*,EnclosingMethod
-keepclasseswithmembers class * {
public <init>(android.content.Context, android.util.AttributeSet, int);
}

可能有一些角落的情况需要新行,所以我最终使用了他们的README。


推荐