I am developing a Windows Phone application which needs to read google docs spreadsheets and came to a problem on the first stemp. According to the accepted answer on this and this topics I have created something like this in the Portable class library
using Google.GData.Spreadsheets;
public void Read()
{
SpreadsheetsService myService = new SpreadsheetsService("service");
myService.setUserCredentials("username@provider.com", "password");
SpreadsheetQuery query = new SpreadsheetQuery();
SpreadsheetFeed feed = myService.Query(query);
foreach (SpreadsheetEntry entry in feed.Entries)
{
}
}
When trying to build it I get this error:
The type or namespace name 'Google' could not be found
(are you missing a using directive or an assembly reference?)
This is a Windows Phone 7.1 app and the PCL is setup to .Net 4+, Silverlight 4+ windows phone 7.5+
Any ideas?