我有一个基于Android的应用程序,它使用Rest服务连接到Google App Engine,该应用程序可以完美运行,直到它在发布之前通过ProGuard进行模糊处理。
运行混淆应用程序时LogCat中报告的错误是:
Unable to convert a [application/json,UTF-8] representation into an object of
class com.enterprisemk.android.bcw.bincollection.WasteCollectionAreasContainer
org.codehaus.jackson.map.JsonMappingException: No suitable constructor found
for type [simple type, class
com.enterprisemk.android.bcw.bincollection.WasteCollectionAreasContainer]:
can not instantiate from JSON object (need to add/enable type information?)
我在proguard-project.txt文件中有以下内容:
-keepattributes *Annotation*,EnclosingMethod
-keep public class org.w3c.** {public private protected *;}
-dontwarn org.w3c.**
-keep public class org.joda.time.** {public private protected *;}
-dontwarn org.joda.time.**
-keep public class org.restlet.** { *; }
-dontwarn org.restlet.**
-keep public class org.codehaus.** { *; }
-dontwarn org.codehaus.**
-keepattributes Signature
-keepnames class com.fasterxml.jackson.** { *; }
-dontwarn com.fasterxml.jackson.databind.**
我的班级错误指的是:
public class WasteCollectionAreasContainer {
public List<WasteCollectionAreas> wasteCollectionAreasList;
public List<WasteCollectionAreas> getWasteCollectionAreasList() {
return wasteCollectionAreasList;
}
public void setWasteCollectionAreasist(List<WasteCollectionAreas> wasteCollectionAreasList) {
this.wasteCollectionAreasList = wasteCollectionAreasList;
}
public WasteCollectionAreasContainer() {
wasteCollectionAreasList = new ArrayList<WasteCollectionAreas>();
}
@JsonCreator
public WasteCollectionAreasContainer(List<WasteCollectionAreas> wasteCollectionAreasList) {
this.wasteCollectionAreasList = wasteCollectionAreasList;
}
}
在通过ProGuard进行模糊处理之前重申该应用程序可以正常运行 任何人都可以帮我解决这个问题吗?
答案 0 :(得分:2)
将以下内容添加到Proguard.config
。它可以帮助您找到问题。
-verbose
-dump class_files.txt
-printseeds seeds.txt
-printusage unused.txt
-printmapping mapping.txt
我在proguard-project.txt文件中有以下内容
我认为您应该使用proguard-android-optimize.txt
,而不是proguard-android.txt
。
为了完整起见,感谢Riley Hassell在Android Security Discussions上的伎俩。
答案 1 :(得分:1)
错误消息
org.codehaus.jackson.map.JsonMappingException: No suitable constructor found for type
[simple type, class com.enterprisemk.android.bcw.bincollection.WasteCollectionAreasContainer]:
can not instantiate from JSON object (need to add/enable type information?)
建议Jackson库试图使用反射来反序列化您的类,其原始名称和带注释的构造函数。 ProGuard无法预见到这一点,因此它可能已删除或重命名了该类及其构造函数。您可能需要明确地保留它们:
-keep class com.enterprisemk.android.bcw.bincollection.WasteCollectionAreasContainer {
<init>(java.util.List);
}
出于同样的原因,可能还需要保留其他类似的类/字段/方法。