20

これが私のプロガード構成です(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 でアプリを難読化しようとすると、プロガードは次のような数十のエラーを言って失敗します。

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

また、ソースを難読化しないようにしようとすると、proguard が失敗します。

proguardでflurryを使用するには? そして、ソースを難読化しないようにプロガードを作成する方法は?

更新 また、 FlurryAgent.jar はすでに難読化されているようだと述べました- http://korniltsev.ru/p/jBU0f1c.png。たぶん、jar 全体の縮小を無視できますか?

4

5 に答える 5

46

最後に、私はこのようにすることができました:

-keep class com.flurry.** { *; }
-dontwarn com.flurry.**
于 2012-08-31T10:22:34.037 に答える
10

Korniltsevの答えは私にとってはうまくいきますが、新しいフラリー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 を使用することになりました。

于 2013-10-16T00:19:10.397 に答える
5

Flurry が具体的にどのように AdListener と対話しているかはわかりませんが、難読化されているのは Google のクラスの名前です。

-keep public class com.google.ads.AdListenerこの行を proguard ファイルに追加してみてください。Flurry が他の com.google.ads クラスを使用している場合は、さらにいくつかのクラス例外を追加する必要があるかもしれませんが、その行ですぐに警告が解決されるはずです。

更新: 問題は、パブリック クラスのメソッド名がさまざまな広告ライブラリで難読化されていることです。したがって、これらのメソッドを含めるには、追加のプロガード設定を含める必要がある場合があります。

-keep public class com.google.ads.** { public protected *; } 
-keep public class com.inmobi.androidsdk.** { public protected *; }
-keep public class com.millenialmedia.android.** { public protected *; }
-keep public class com.mobclix.android.sdk.** { public protected *; }
-keep public class com.jumptap.adtag.** { public protected *; }

Flurry と協力して自分自身をプロガードしたので、選択したアプリ マーケットにアップロードする前に、apk を徹底的にテストしてください。

于 2012-08-30T14:30:58.697 に答える
3

Flurry (現在は Yahoo が所有) からの公式の推奨 proguard ファイルは、次の場所から入手できます。

https://developer.yahoo.com/flurry/docs/publisher/code/android/

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



# Google Play Services library
-­keep class * extends java.util.ListResourceBundle {
  protected Object[][] getContents(); 
}

-­keep public class com.google.android.gms.common.internal.safeparcel.SafeParcelable {
  public static final *** NULL; 
}

-­keepnames @com.google.android.gms.common.annotation.KeepName class * ­keepclassmembernames class * {
  @com.google.android.gms.common.annotation.KeepName *; 
}

-­keepnames class * implements android.os.Parcelable {
  public static final ** CREATOR;
}
#If you are using the Google Mobile Ads SDK, add the following:
# Preserve GMS ads classes
-­keep class com.google.android.gms.ads.** { *;
} 
-­dontwarn com.google.android.gms.ads.**


#If you are using the InMobi SDK, add the following:
# Preserve InMobi Ads classes 
-­keep class com.inmobi.** { *;
} 
-­dontwarn com.inmobi.**
#If you are using the Millennial Media SDK, add the following:
# Preserve Millennial Ads classes
-­keep class com.millennialmedia.** { *;
} 
-­dontwarn com.millennialmedia.**
于 2015-03-02T17:28:52.173 に答える