I'm trying to use the Google Sheets API (v4) for Android, and I can't find how to use the values().update()
or batchUpdate()
methods to update a specific workbook of the sheet.
Does anyone know how to do this?
EDIT: To clarify, I am using THIS API: (from build.gradle)
compile('com.google.api-client:google-api-client-android:1.22.0') {
exclude group: 'org.apache.httpcomponents'
}
compile('com.google.apis:google-api-services-sheets:v4-rev28-1.22.0') {
exclude group: 'org.apache.httpcomponents'
}