6

Proguard for Google Analytics に追加する必要がある keep ステートメントを知っている人はいますか?

私は今この行を持っていますが、何らかの理由で何も報告されていません...

 # google analytics, uncomment if using:
-keep class com.google.android.apps.analytics.PipelinedRequester$Callbacks
4

2 に答える 2

17

私はジェネリックを持っています

-keep public class com.google.** {*;}

私のproguard.cfgで、Google Analyticsは正常に動作します。

これを試して。これで問題が解決しない場合、問題は Proguard ではなく、Google アナリティクスの構成または接続の問題です。

于 2012-10-25T16:02:16.283 に答える
0

You can find the official proguard rules file in aar package, locate at:

android-sdk-windows\extras\google\m2repository\com\google\android\gms\play-services-analytics\x.x.x\play-services-analytics-x.x.x.aar

proguard.txt:

-keep class * extends java.util.ListResourceBundle {
    protected java.lang.Object[][] getContents();
}

# Keep SafeParcelable value, needed for reflection. This is required to support backwards
# compatibility of some classes.
-keep public class com.google.android.gms.common.internal.safeparcel.SafeParcelable {
    public static final *** NULL;
}

# Keep the names of classes/members we need for client functionality.
-keepnames @com.google.android.gms.common.annotation.KeepName class *
-keepclassmembernames class * {
    @com.google.android.gms.common.annotation.KeepName *;
}

# Needed for Parcelable/SafeParcelable Creators to not get stripped
-keepnames class * implements android.os.Parcelable {
    public static final ** CREATOR;
}

# Needed when building against the Marshmallow SDK
-dontwarn org.apache.http.**

# Needed when building against pre-Marshmallow SDK.
-dontwarn android.security.NetworkSecurityPolicy

And you can see section Create a ProGuard Exception in this page for more detail: https://developers.google.com/android/guides/setup

于 2016-01-07T07:00:26.463 に答える