1. 程式人生 > >can't find referenced class okhttp3.internal.http.HttpEngine錯誤解決

can't find referenced class okhttp3.internal.http.HttpEngine錯誤解決

工程build apk時報錯

Error:11:23:00.724 [ERROR] [system.err] Warning: okhttp3.logging.HttpLoggingInterceptor: can't find referenced class okhttp3.internal.http.HttpEngine
11:23:00.724 [ERROR] [system.err] Warning: okhttp3.logging.HttpLoggingInterceptor: can't find referenced class okhttp3.internal.http.HttpEngine
11:23:00.724 [ERROR] [system.err] Warning: okhttp3.logging.HttpLoggingInterceptor$Logger$1: can't find referenced class okhttp3.internal.Platform 11:23:00.724 [ERROR] [system.err] Warning: okhttp3.logging.HttpLoggingInterceptor$Logger$1: can't find referenced class okhttp3.internal.Platform 11:23:00.724 [ERROR
] [system.err] Warning: okhttp3.logging.HttpLoggingInterceptor$Logger$1: can't find referenced class okhttp3.internal.Platform 11:23:02.225 [ERROR] [system.err] Warning: there were 5 unresolved references to classes or interfaces.

混淆配置檔案中增加:

-keep class okhttp3.** { *; }
-keep interface okhttp3.** { *; }
-dontwarn okhttp3.**

執行,ok了