我在我的android项目中使用restfb库,一切都很好。当我尝试使用它运行 proguard 时,它已成功完成,但是在运行应用程序时,我得到了
com.restfb.exception.FacebookJsonMappingException:您必须指定要映射到的 Java 类型。在 com.restfb.DefaultJsonMapper.toJavaList(未知来源)
我的 proguard-project.txt 包含这些行
-keep class com.restfb.** { *; }
-keep interface com.restfb.** { *; }
我错过了什么吗?