我收到此错误消息:
“无法解析com.google.gdata.client.GoogleService类型。它是从所需的.class文件间接引用的”
我正在使用Google API,因为我的目标是使用Google Apps,但使用的是Java,尤其是Android。
以下是代码:
SpreadsheetService service = new SpreadsheetService(" Google Spreadsheet Demo");
// Login and prompt the user to pick a sheet to use.
service.setUserCredentials(GOOGLE_ACCOUNT_USERNAME, GOOGLE_ACCOUNT_PASSWORD);
当我想使用service.setUserCredentials
时会显示错误消息
我已经导入了Google API(jars)库,甚至包括gdata-client/spreadsheets/docs
等其他人。