2017-07-27 104 views
5

我正在使用Android Room Persistence Library 1.0.0-alpha5。 與ProGuard編譯時出現以下錯誤。是Android Room Persistence Library Proguard配置

Warning:android.arch.persistence.room.paging.LimitOffsetDataSource: can't find superclass or interface android.arch.util.paging.CountedDataSource 
Warning:android.arch.persistence.room.paging.LimitOffsetDataSource: can't find referenced class android.arch.util.paging.CountedDataSource 
Warning:android.arch.persistence.room.paging.LimitOffsetDataSource$1: can't find referenced method 'void invalidate()' in program class android.arch.persistence.room.paging.LimitOffsetDataSource 
Warning:there were 5 unresolved references to classes or interfaces. 
Warning:there were 1 unresolved references to program class members. 
Warning:Exception while processing task java.io.IOException: Please correct the above warnings first. 

我的ProGuard配置的房間如下

-dontwarn okio.** 
-dontwarn javax.annotation.Nullable 
-dontwarn javax.annotation.ParametersAreNonnullByDefault 
# Platform calls Class.forName on types which do not exist on Android to  determine platform. 
-dontnote retrofit2.Platform 
# Platform used when running on Java 8 VMs. Will not be used at runtime. 
-dontwarn retrofit2.Platform$Java8 
# Retain generic type information for use by reflection by converters  and adapters. 
-keepattributes Signature 
# Retain declared checked exceptions for use by a Proxy instance. 
-keepattributes Exceptions 
-keep class android.content.** 
-dontwarn android.content.** 
-keep class android.animation.** 
-dontwarn android.animation.** 
-keep class me.panavtec.drawableview.** 
-dontwarn me.panavtec.drawableview.** 
-keep class javax.annotation.concurrent.** 
-dontwarn javax.annotation.concurrent.** 
-keep class android.arch.persistence.room.paging.LimitOffsetDataSource 
-keep interface android.arch.persistence.room.paging.LimitOffsetDataSource 
-keep class android.arch.util.paging.CountedDataSource 
-keep interface android.arch.util.paging.CountedDataSource 

我需要修復此錯誤的幫助。我相信ProGuard的配置並沒有之前的Alpha 3必需的,我沒有測試阿爾法4

回答

6

可以在ProGuard的添加以下代碼行,而不是keep

-dontwarn android.arch.util.paging.CountedDataSource 
-dontwarn android.arch.persistence.room.paging.LimitOffsetDataSource 
+1

它的工作。 由於某些原因,我在使用proguard中的dontwarn時總是有點懷疑:P 非常感謝:D – user3425867

相關問題