我正在开发一个带有原生扩展的 Android 版 Flex Mobile 应用程序。我正在尝试在 Java 代码中使用 Retrofit,但 Retrofit 调用失败。
我定义了以下接口:
public interface GitHubService {
@GET("/repos/{owner}/{repo}/contributors")
List<Contributor> contributors(
@Path("owner") String owner,
@Path("repo") String repo
);
}
然后我AsyncTask
从我的 Java 代码中的适当位置调用了一个。它的doInBackground
方法是这样的:
@Override
protected String doInBackground(String... arg0) {
Gson gson = new GsonBuilder()
.setFieldNamingPolicy(FieldNamingPolicy.LOWER_CASE_WITH_UNDERSCORES)
.registerTypeAdapter(Date.class, new DateTypeAdapter())
.create();
RestAdapter restAdapter = new RestAdapter.Builder().setServer("https://api.github.com")
.setConverter(new GsonConverter(gson))
.build();
GitHubService service = restAdapter.create(GitHubService.class);
List<Contributor> contributors = service.contributors("square", "okhttp");
for (Contributor contributor : contributors) {
Log.d("FooTask", contributor.login + " - " + contributor.contributions);
}
return null;
}
从这一切来看,我期待看到在 LogCat 中打印的列表;相反,我得到以下异常:
FATAL EXCEPTION: AsyncTask #1
java.lang.RuntimeException: An error occured while executing doInBackground()
...
Caused by: java.lang.IllegalStateException: No Retrofit annotation found on parameter 1 of contributors
有没有办法使用 Flex Mobile 使 Retrofit 在本机扩展中工作?