I'm trying to install this Google sample project (tasks-android-sample): http://samples.google-api-java-client.googlecode.com/hg/tasks-android-sample/instructions.html
...but I'm getting unresolved classes. The project comes with jars but doesn't say which ones to include (in typical Google fashion) so through experimentation I managed to resolve most of the classes except these two:
import com.google.api.services.tasks.TasksRequest;
import com.google.api.services.tasks.model.Task;
Does anyone know which jars have these classes? I included every jar that came with the project, and set my target to Google APIs 8 as instructed by the docs (I tried other targets as well) but I can't resolve these classes.
Thanks in advance...