112 Stimmen

Aktivieren von ProGuard in Eclipse für Android

Die neue Dokumentation über ProGuard für Android sagt, dass eine Zeile in die Datei default.properties im Home-Verzeichnis des Projekts eingefügt werden soll. Wenn ich diese Datei jedoch öffne, lese ich oben:

# This file is automatically generated by Android Tools. 
# Do not modify this file -- YOUR CHANGES WILL BE ERASED! 

Habe ich etwas verpasst?

Gibt es außerdem eine Möglichkeit, ProGuard nur für einen Produktions-Build von Eclipse aus zu aktivieren (d. h. beim Exportieren des fertigen Produkts)?

113voto

neteinstein Punkte 17321

Android SDK (r20 oder höher)

Bitte überprüfen Sie die vordefinierte proguard.config, die in project.properties angegeben ist

proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt

Mehr Informationen: http://proguard.sourceforge.net/manual/examples.html#androidapplication

Über Gradle:

buildTypes {
 release {
            minifyEnabled true
            shrinkResources true
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'

            ...
  }
 }

Hier können Sie eine "Standard"-Datei von proguard überprüfen, die ich ständig aktualisiere: https://medium.com/code-procedure-and-rants/Android-my-standard-proguard-ffeceaf65521


Android SDK (r19 oder niedriger)

Sie können sie in die default.properties aufnehmen. Ich habe sie manuell hinzugefügt, ohne dass es bisher Probleme gab.

Wenn Sie die Zeile hinzufügen:

proguard.config=proguard.cfg

Wie gesagt, es wird nur ProGuard verwendet, wenn eine signierte Anwendung exportiert wird (Android Tools => Export Signed Application)

Wenn Sie das Projekt mit dem SDK vor Android 2.3 starten, wird die proguard.cfg Datei wird nicht erstellt (neben default.properties wie in 2.3>).

Um die automatische Erstellung zu aktivieren, aktualisieren Sie einfach auf das SDK von Android 2.3 und erstellen Sie ein neues Projekt mit den vorhandenen Quellen (die die Quellen des Projekts sind, das Sie derzeit haben).

Automatisch wird die proguard.cfg Füllung erstellt werden.

Wenn Sie sie dennoch manuell erstellen möchten, sollte sie Folgendes enthalten:

-dontusemixedcaseclassnames
-dontskipnonpubliclibraryclasses
-dontwarn android.support.**
-verbose

-dontoptimize
-dontpreverify

-keepattributes *Annotation* 
-keep public class * extends android.app.Activity
-keep public class * extends android.app.Application
-keep public class * extends android.app.Service
-keep public class * extends android.content.BroadcastReceiver
-keep public class * extends android.content.ContentProvider
-keep public class com.google.vending.licensing.ILicensingService
-keep public class com.android.vending.licensing.ILicensingService
-keep public class * extends android.support.v4.app.Fragment
-keep public class * extends android.app.Fragment

-keepclasseswithmembernames class * {
    native <methods>;
}

-keepclasseswithmembernames class * {
    public <init>(android.content.Context, android.util.AttributeSet);
}

-keepclasseswithmembernames class * {
    public <init>(android.content.Context, android.util.AttributeSet, int);
}

 -keepclassmembers public class * extends android.view.View {
  void set*(***);
  *** get*();
 }

-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>;
}

Ich denke, ich habe alle Fragen oben beantwortet.

UPDATE :

Eine Erklärung Zeile für Zeile:

#Use 5 step of optimization 
#-optimizationpasses 5

#When not preverifing in a case-insensitive filing system, such as Windows. This tool will unpack your processed jars,(if using windows you should then use):
-dontusemixedcaseclassnames

#Specifies not to ignore non-public library classes. As of version 4.5, this is the default setting
-dontskipnonpubliclibraryclasses

# Optimization is turned off by default. Dex does not like code run
# through the ProGuard optimize and preverify steps (and performs some
# of these optimizations on its own).    
-dontoptimize
-dontpreverify

-dontwarn android.support.**

#Specifies to write out some more information during processing. If the program terminates with an exception, this option will print out the entire stack trace, instead of just the exception message.
-verbose

#The -optimizations option disables some arithmetic simplifications that Dalvik 1.0 and 1.5 can't handle. Note that the Dalvik VM also can't handle aggressive overloading (of static fields).
#To understand or change this check http://proguard.sourceforge.net/index.html#/manual/optimizations.html
#-optimizations !code/simplification/arithmetic,!field/*,!class/merging/*

# Note that if you want to enable optimization, you cannot just
# include optimization flags in your own project configuration file;
# instead you will need to point to the
# "proguard-android-optimize.txt" file instead of this one from your
# project.properties file.

#To repackage classes on a single package
#-repackageclasses ''

#Uncomment if using annotations to keep them.
#-keepattributes *Annotation*

#Keep classes that are referenced on the AndroidManifest
-keep public class * extends android.app.Activity
-keep public class * extends android.app.Application
-keep public class * extends android.app.Service
-keep public class * extends android.content.BroadcastReceiver
-keep public class * extends android.content.ContentProvider
-keep public class * extends android.app.backup.BackupAgentHelper
-keep public class * extends android.preference.Preference
-keep public class com.google.vending.licensing.ILicensingService
-keep public class com.android.vending.licensing.ILicensingService
#Compatibility library 
-keep public class * extends android.support.v4.app.Fragment
-keep public class * extends android.app.Fragment

#To maintain custom components names that are used on layouts XML.
#Uncomment if having any problem with the approach below
#-keep public class custom.components.package.and.name.**

# 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*();
}

#To remove debug logs:
-assumenosideeffects class android.util.Log {
    public static *** d(...);
    public static *** v(...);
    public static *** w(...);
}

#To avoid changing names of methods invoked on layout's onClick.
# Uncomment and add specific method names if using onClick on layouts
#-keepclassmembers class * {
# public void onClickButton(android.view.View);
#}

#Maintain java native methods 
-keepclasseswithmembernames class * {
    native <methods>;
}

#To maintain custom components names that are used on layouts XML:
-keep public class * extends android.view.View {
    public <init>(android.content.Context);
}
-keep public class * extends android.view.View {
    public <init>(android.content.Context, android.util.AttributeSet);
}
-keep public class * extends android.view.View {
    public <init>(android.content.Context, android.util.AttributeSet, int);
}

#Maintain enums
-keepclassmembers enum * {
    public static **[] values();
    public static ** valueOf(java.lang.String);
}

#To keep parcelable classes (to serialize - deserialize objects to sent through Intents)
-keep class * implements android.os.Parcelable {
  public static final android.os.Parcelable$Creator *;
}

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

###### ADDITIONAL OPTIONS NOT USED NORMALLY

#To keep callback calls. Uncomment if using any
#http://proguard.sourceforge.net/index.html#/manual/examples.html#callback
#-keep class mypackage.MyCallbackClass {
#   void myCallbackMethod(java.lang.String);
#}

#Uncomment if using Serializable 
#-keepclassmembers class * implements java.io.Serializable {
#    private static final java.io.ObjectStreamField[] serialPersistentFields;
#    private void writeObject(java.io.ObjectOutputStream);
#    private void readObject(java.io.ObjectInputStream);
#    java.lang.Object writeReplace();
#    java.lang.Object readResolve();
#}

UPDATE 2:

In der jüngsten ADT/Proguard-Verwendung -keepclasseswithmembers anstelle von -keepclasseswithmembernames

76voto

ligi Punkte 38032

Nur ein Follow-up, weil ich für die gleiche Sache gesucht wurde - und die Antworten hier sind veraltet - in letzter Zeit die Basis proguard Konfiguration ist hier in der sdk-Verzeichnis - so müssen Sie nur diese in Ihre project.properties setzen:

proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt

wenn Sie projektspezifische Änderungen vornehmen wollen, erstellen Sie eine proguard-project.txt und ändern Sie die Zeile in:

proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt

10voto

usethe4ce Punkte 22481

Zumindest ab ADT 16 können Sie die Zeile in der Tat hinzufügen project.properties und sie wird erhalten bleiben. Sie können versuchen, die Ziel-SDK-Version zu ändern, und sehen, dass project.properties wird entsprechend aktualisiert, aber die hinzugefügte Zeile ist noch vorhanden. Ich denke also, dass die Warnung einfach schlecht formuliert ist; sie will damit sagen, dass Einstellungen in der Datei wie target werden mit den Projekteinstellungen überschrieben und nicht umgekehrt.

4voto

phillxnet Punkte 191

Mit der ADT-Version 17 wurden Änderungen an der ProGuard-Konfiguration vorgenommen. ProGuard wurde von 4.4 auf 4.7 aktualisiert und der bereits erwähnte Unterschied in der Referenz der Konfigurationsdatei wurde eingeführt. Beachten Sie, dass bestehende Projekte unverändert bleiben, so dass sie ohne den neueren Regelsatz auskommen, der in dieser und neueren ADT-Versionen enthalten ist. Relevantes Dokument für neuere Konfigurationsanordnung, bereits vermerkt von ligi sind abrufbar unter:-

http://tools.Android.com/recent/proguardimprovements "Zweitens haben wir die Art und Weise geändert, wie Konfigurationsdateien gehandhabt werden.

3voto

Eric Lafortune Punkte 44044

Sie können die Zeile in build.properties wie erwähnt in default.properties .

CodeJaeger.com

CodeJaeger ist eine Gemeinschaft für Programmierer, die täglich Hilfe erhalten..
Wir haben viele Inhalte, und Sie können auch Ihre eigenen Fragen stellen oder die Fragen anderer Leute lösen.

Powered by:

X