【问题标题】:Does Proguard remove comments from Java sourceProguard 是否从 Java 源代码中删除注释
【发布时间】:2012-09-10 17:09:17
【问题描述】:

我正在使用下面 proguard-android.txt 文件中的代码

# This is a configuration file for ProGuard.
# http://proguard.sourceforge.net/index.html#manual/usage.html

-dontusemixedcaseclassnames
-dontskipnonpubliclibraryclasses
-verbose

# 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
# 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.

-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.**

混淆 Android 代码。

我的问题 当我们在 Proguard 中使用上述设置时,Proguard 是否会从 Java 源文件中删除所有 cmets?

【问题讨论】:

    标签: android proguard


    【解决方案1】:

    ProGuard 不会从源文件中删除任何内容,无论设置如何。 ProGuard 确保已编译 文件具有混淆的方法/类名称,并在可能的情况下完全剥离适当的方法/类。

    无论您是否使用 ProGuard,编译的 Java 二进制文件都不包含常规代码 cmets。

    【讨论】:

    • 嗯,JavaDoc 有一个半例外,它用于生成 HTML API 文档(并且可以在 JAR 中分发)。我很确定 ProGuard 不会做任何花哨的事情来删除或修剪 JavaDoc HTML。
    • @kabuko 在我的情况下所有JavaDoc cmets 都从源代码中删除。我想避免这种情况。你知道怎么做吗?
    猜你喜欢
    • 2015-01-09
    • 2011-05-23
    • 1970-01-01
    • 2015-05-06
    • 2011-02-03
    • 2014-06-27
    • 1970-01-01
    • 2010-09-17
    • 1970-01-01
    相关资源
    最近更新 更多