当前位置: 首页 > 面试题库 >

启用Proguard后,Android应用程序崩溃

祁坚壁
2023-03-14
问题内容

每次我从Eclipse导出签名应用程序并将apk文件安装到手机上时,该应用程序都会崩溃。这仅在启用Proguard的情况下发生。

这是我的保护文件

-libraryjars /libs/firebase-client-android-2.2.3.jar
-libraryjars /libs/android-support-v4.jar
-optimizationpasses 5
-dontusemixedcaseclassnames
-dontskipnonpubliclibraryclasses
-dontpreverify
-verbose
-optimizations !code/simplification/arithmetic,!field/*,!class/merging/*

-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.android.vending.licensing.ILicensingService
-keep public class * implements java.io.Serializable
-keep public class * extends android.support.v4.app.Fragment
-keep public class * extends android.support.v4.app.ListFragment

-dontwarn com.shaded.fasterxml.**
-dontwarn org.apache.**
-dontwarn org.shaded.apache.**
-keepnames class com.shaded.fasterxml.jackson.** { *; }
-keepnames class org.shaded.apache.**

-keepnames interface com.fasterxml.jackson.** { 
    *; 
}

-keep public class * extends com.android.partysearch.ChatApplication
-keepclassmembers class * extends com.android.partysearch.ChatApplication{
 public <init>(android.content.Context);
}


-keep public class org.spongycastle.** {
  <fields>;
  <methods>;
}

-keep public class org.apache.** {
  <fields>;
  <methods>;
}

-ignorewarnings

-keepclasseswithmembernames class * {
    native <methods>;
}

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

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

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


-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 * implements java.io.Serializable {
    static final long serialVersionUID;
    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();
}

我运行了adb logcat命令来检查崩溃报告。以下是我认为很重要的报告摘要:

E/AndroidRuntime(28630): Caused by: java.lang.RuntimeException: Something went wrong, please report to support@firebase.com
E/AndroidRuntime(28630):    at com.firebase.client.core.h.a(Unknown Source)
E/AndroidRuntime(28630):    at com.firebase.client.g.a(Unknown Source)
E/AndroidRuntime(28630):    at com.partysearch.ChatApplication.onCreate(Unknown Source)
E/AndroidRuntime(28630):    at android.app.Instrumentation.callApplicationOnCreate(Instrumentation.java:1024)
E/AndroidRuntime(28630):    at android.app.ActivityThread.handleBindApplication(ActivityThread.java:4694)
E/AndroidRuntime(28630):    ... 10 more
E/AndroidRuntime(28630): Caused by: java.lang.NoSuchMethodException: <init> [class android.content.Context]
E/AndroidRuntime(28630):    at java.lang.Class.getConstructorOrMethod(Class.java:423)
E/AndroidRuntime(28630):    at java.lang.Class.getConstructor(Class.java:397)
E/AndroidRuntime(28630):    ... 15 more

第二段:

W/System.err(  356): Caused by: libcore.io.ErrnoException: open failed: ENOENT (No such file or directory)
W/System.err(  356):    at libcore.io.Posix.open(Native Method)
W/System.err(  356):    at libcore.io.BlockGuardOs.open(BlockGuardOs.java:110)
W/System.err(  356):    at libcore.io.IoBridge.open(IoBridge.java:393)
W/System.err(  356):    ... 8 more

如果有人可以帮助我,我将非常感谢并接受您的回答。

更新: 所以我将这些添加到我的proguard文件

-keepattributes Signature
-keep class com.firebase.** { *; }
-keep class org.apache.** { *; }
-keepnames class javax.servlet.** { *; }
-keepnames class org.ietf.jgss.** { *; }
-dontwarn org.w3c.dom.**
-dontwarn org.joda.time.**
-dontwarn org.ietf.jgss.**

现在启用Proguard时出现与Jackson相关的错误。如果Proguard被禁用,该应用程序仍然可以运行。这是崩溃日志的片段:

E/AndroidRuntime( 6032): Caused by: com.shaded.fasterxml.jackson.databind.exc.UnrecognizedPropertyException: Unrecognized field "time" (class com.partysearch.Room), not marked as ignorable (5 known properties: , "note", "level", "userName", "console", "gametype"])

E/AndroidRuntime( 6032):  at [Source: java.io.StringReader@42664098; line: 1, column: 51] (through reference chain: com.partysearch.Room["time"])

E/AndroidRuntime( 6032):    at com.shaded.fasterxml.jackson.databind.DeserializationContext.reportUnknownProperty(DeserializationContext.java:555)

E/AndroidRuntime( 6032):    at com.shaded.fasterxml.jackson.databind.deser.std.StdDeserializer.handleUnknownProperty(StdDeserializer.java:708)

E/AndroidRuntime( 6032):    at com.shaded.fasterxml.jackson.databind.deser.BeanDeserializerBase.handleUnknownProperty(BeanDeserializerBase.java:1160)

E/AndroidRuntime( 6032):    at com.shaded.fasterxml.jackson.databind.deser.BeanDeserializer.deserializeFromObject(BeanDeserializer.java:315)

E/AndroidRuntime( 6032):    at com.shaded.fasterxml.jackson.databind.deser.BeanDeserializer.deserialize(BeanDeserializer.java:121)

E/AndroidRuntime( 6032):    at com.shaded.fasterxml.jackson.databind.ObjectMapper._readMapAndClose(ObjectMapper.java:2888)

E/AndroidRuntime( 6032):    at com.shaded.fasterxml.jackson.databind.ObjectMapper.readValue(ObjectMapper.java:2034)

E/AndroidRuntime( 6032):    at com.firebase.client.DataSnapshot.getValue(DataSnapshot.java:184)

E/AndroidRuntime( 6032):    ... 13 more

问题答案:

我终于解决了。这就是我忘记添加到Proguard文件中的内容。吸气剂和吸气剂。

-keep public class com.example.YourModelClassName {
  public *** get*();
  public void set*(***);
}


 类似资料:
  • 问题内容: 我的应用程序在没有启用proguard的情况下可以完美运行,但是当我启用它时,该应用程序立即崩溃。我尝试了配置中的许多组合都无济于事。 有什么我应该保留的东西,我丢失了吗? proguard配置:https : //gist.github.com/hanleyhansen/99fc07807950bae8e4f5 完整的日志:https ://gist.github.com/hanle

  • JAVAlang.Exception在c.b.a.a.f.b.a(未知源:0)在c.b.a.a.e.c.nc的初始化错误。(未知来源:12)在c.b.a.a.b.a.(未知来源:8)在com。谷歌。火基。不应用消息传递。内部的注射模块。ClearcutLoggerClientModule。在此处输入代码时提供ClearCutClient(未知来源:5)。谷歌。火基。不应用消息传递。内部的注射模块。

  • 在以前的代码上,谁医生帮了我 现在,android应用程序在我的手机上运行时崩溃了,这是错误日志 第一个问题是在我用相机扫描二维码后,它不能显示在二维码的结果进入 第二个问题是,我从存储器中选择了一个QRcode图像,然后点击确认,它崩溃了 下面是我认为的问题 类型不匹配:推断的类型是Uri?但乌里是意料之中的 冗余SAM构造函数 'onRequestPermissionsResult(Int,数

  • 我明白了,我必须提到Proguard属性文件中的外部库。我该怎么提才是问题所在。 请查看我的proguard文件

  • 无论如何,由于multi-dex支持不起作用,我的下一个尝试就是让Proguard能够优化应用程序中绑定的类。我下载了最新的proguard文件(5.3.3),并将它们部署到/android/sdk/tools/proguard。我更新了proguard-android.txt文件,使其包含以下行: 然而,当应用程序启动并尝试使用google位置服务时,它会使应用程序崩溃: 导致Xamarin的原

  • 我的应用程序在我试图实现的闪屏后崩溃。我不知道问题发生在哪里。 我试着用两个小时来解决这个问题,甚至还研究了一下网络,但不知怎么的,我没能让它工作。也许你们可以看看代码,给我一些提示?我会很感激的。 AndroidManifest。xml launch_screen.xml activity_main.xml 风格。xml 主要活动。JAVA 所以会显示实际的启动屏幕,但之后应用程序就会崩溃。我不