Xamarin Android ProGuard 启用
Posted
技术标签:
【中文标题】Xamarin Android ProGuard 启用【英文标题】:Xamarin Android ProGuard Enable 【发布时间】:2016-12-30 14:33:09 【问题描述】:我正在开发 xamarin 应用程序。当我在 android 属性中启用“ProGuard”时,在构建应用程序时,我收到以下错误:
"java.exe" exited with code1.
proguard cfg 文件有以下内容:
-keep public class * extends android.app.Activity
-keep public class * extends android.app.Application
-keep public class * extends android.app.Service
开发环境: 视觉工作室 2015 Xamarin 4.0.4.4
【问题讨论】:
什么时候出现错误?运行?编译时间?也添加你的 proguard 文件。 您能否将完整的诊断构建输出添加到您的问题中?错误应该有导致它的痕迹。 我见过的最常见的问题与您的 JDK 版本有关(如果您将其设置为诊断,您会在输出中看到)以及堆大小不足。在他们的 bugtracker 中仍然存在一些未解决的 bug,即:bugzilla.xamarin.com/show_bug.cgi?id=35255 听起来你需要在你的 proguard 中添加更多的内容。检查此链接proguard.sourceforge.net/manual/… @AndroidRuntimeException - 为您所说的添加更多详细信息:错误代码“1”表明缺少keep
s 导致链接失败(但首先确保 JDK 和 Android SDK 是最新的)日期)。需要查看诊断构建输出才能确定。 FWIW,对于 Xamarin,可能有一个特定于项目的 proguard cfg,具有任何需要的自定义。这会在 Xamarin 工具选项中引用的 Android SDK 路径下添加到默认路径,例如(用户名)/AppData/Local/Xamarin/Universal/AndroidSDK/tools/proguard/proguard-android.txt
【参考方案1】:
我在启用 ProGuard 时遇到了同样的问题。按照this link 上的建议,我通过手动更新我的proguard 解决了这个问题。这些步骤很容易遵循,他们解决了问题。希望对您有所帮助。
-
从以下位置下载 ProGuard zip 文件:https://sourceforge.net/projects/proguard/files/。在撰写本文时,ProGuard 的最新版本是 5.3。
ProGuard 没有安装程序,因此您需要解压缩文件并将 proguard 文件夹结构复制到以下步骤中确定的位置。
启动 SDK 管理器并记下左上角菜单选项下的路径。在我的情况下,这是 C:\Users\Sahar\AppData\Local\Android\android-sdk。 proguard 文件夹位于该路径的 tools 文件夹中(在我的例子中是 C:\Users\Sahar\AppData\Local\Android\android-sdk\tools\proguard)。
关闭所有可能正在访问 SDK 的开发环境,并将 proguard 文件夹重命名为 proguard.old。
将新版本的 proguard 文件夹复制到 tools 文件夹中,必要时将其重命名为 proguard(在我的例子中,复制的文件夹是从 proguard5.3 重命名的)。
最后将配置文件从 proguard.old 文件夹复制到新文件夹。就我而言,这些是:-
proguard-android.txt、proguard-android-optimize.txt 和 proguard-project.txt。
在启用 ProGuard 的情况下清理并重建您的项目。
【讨论】:
最好的做法是发布相关详细信息并包含页面链接。否则,如果链接失效,那么不幸的是,您的答案的有效性也会失效。 @gravity 感谢您的建议,我刚刚开始尽我所能提供帮助,我会更新我的答案 出色的编辑。现在很详细,因此得到了更好的答案。 @gravity 非常感谢,下次我会做得更好 AFAIK,Xamarin 使用的只是proguard/lib
下的三个.jar
文件。因此,步骤 4-6 的替代方法是将这三个文件替换为新文件。 (有人在另一个 *** 帖子中给出了这个解决方案,但我没有链接到他们的功劳。)【参考方案2】:
Proguard 从我的应用程序中删除 Google Play 服务库时遇到问题。
我必须将以下文本行添加到此文件夹中的 proguard-android.txt
文件中:
/(Path to your Android SDK Folder)/tools/proguard
-keep public class com.google.android.gms.* public *;
-dontwarn com.google.android.gms.**
完成proguard-android.txt文件
-keep public class com.google.android.gms.* public *;
-dontwarn com.google.android.gms.**
# 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);
-keepclassmembers class * implements android.os.Parcelable
public static final android.os.Parcelable$Creator 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.**
# Understand the @Keep support annotation.
-keep class android.support.annotation.Keep
-keep @android.support.annotation.Keep class * *;
-keepclasseswithmembers class *
@android.support.annotation.Keep <methods>;
-keepclasseswithmembers class *
@android.support.annotation.Keep <fields>;
-keepclasseswithmembers class *
@android.support.annotation.Keep <init>(...);
【讨论】:
以上是关于Xamarin Android ProGuard 启用的主要内容,如果未能解决你的问题,请参考以下文章
为啥我的 Xamarin.Android 项目不能在启用 Proguard 的情况下构建:“java.exe”退出代码 1
如何在 xamarin 表单中使用 proguard 优化器工具
启用 Proguard 时,Xamarin Android 应用程序因缺少 google play 服务类而崩溃
Xamarin Java.exe 以代码 1 退出(Proguard 问题)