Retrofit illegalargumentexception,没有找到注解
Retrofit illegalargumentexception, no annotation found
所以当 运行 我的应用程序出现此错误时:
06-17 12:56:08.547 E/AndroidRuntime(23432): Caused by: java.lang.IllegalArgumentException: XapoService.credit: No Retrofit annotation found. (parameter #1)
我进行了 Google 次搜索,发现它可能是由 ProGuard 引起的。我在 ProGuard 中添加了以下行:
-keep class com.google.gson.** { *; }
-keep class com.google.inject.** { *; }
-keep class org.apache.http.** { *; }
-keep class org.apache.james.mime4j.** { *; }
-keep class javax.inject.** { *; }
-keep class java.io.** { *; }
-dontwarn retrofit.**
-keep class retrofit.** { *; }
-keepattributes Signature
-keepattributes Exceptions
-keepattributes *Annotation*
-keep class com.squareup.okhttp.** { *; }
-keep interface com.squareup.okhttp.**
-keep interface retrofit.** { *; }
-dontwarn rx.**
-keepclasseswithmembers class * {
@retrofit.http.* <methods>
}
-keep class com.google.common.** { *; }
-keep class com.mycompany.testSDK.XapoService { ; }
但是我在这个调用中仍然收到错误消息:
import retrofit.client.Response;
import retrofit.http.GET;
import retrofit.http.Query;
import java.util.List;
public interface XapoService {
@GET("/credit/")
Response credit(@Query("appID") String appID, @Query("hash") String hash);
}
今天为 Android 更新了 SDK。已解决。
所以当 运行 我的应用程序出现此错误时:
06-17 12:56:08.547 E/AndroidRuntime(23432): Caused by: java.lang.IllegalArgumentException: XapoService.credit: No Retrofit annotation found. (parameter #1)
我进行了 Google 次搜索,发现它可能是由 ProGuard 引起的。我在 ProGuard 中添加了以下行:
-keep class com.google.gson.** { *; }
-keep class com.google.inject.** { *; }
-keep class org.apache.http.** { *; }
-keep class org.apache.james.mime4j.** { *; }
-keep class javax.inject.** { *; }
-keep class java.io.** { *; }
-dontwarn retrofit.**
-keep class retrofit.** { *; }
-keepattributes Signature
-keepattributes Exceptions
-keepattributes *Annotation*
-keep class com.squareup.okhttp.** { *; }
-keep interface com.squareup.okhttp.**
-keep interface retrofit.** { *; }
-dontwarn rx.**
-keepclasseswithmembers class * {
@retrofit.http.* <methods>
}
-keep class com.google.common.** { *; }
-keep class com.mycompany.testSDK.XapoService { ; }
但是我在这个调用中仍然收到错误消息:
import retrofit.client.Response;
import retrofit.http.GET;
import retrofit.http.Query;
import java.util.List;
public interface XapoService {
@GET("/credit/")
Response credit(@Query("appID") String appID, @Query("hash") String hash);
}
今天为 Android 更新了 SDK。已解决。