2

我创建一个查询来检查是否存在新数据。我在调试模式下编译我的应用程序,运行它,一切正常。如果我在发布模式下编译它,我会得到一个NullPointerException......

这可能与proguard有关吗?实际上,我没有找到任何 proguard 设置App42...

我使用版本 3.0.1...

Storage storage =  storageService.findDocumentsByQueryWithPaging(db, collection, query, 1, 0);
storage.getRecordCount(); // <= this is NULL!!! But only in RELEASE build
4

1 回答 1

2

以下 proguard 设置似乎有效:

-keep class com.shephertz.** {*;}

可能有更好的解决方案,但我找不到任何文档...

于 2015-01-25T10:41:09.603 回答