I am integrating Google Sheets with my Android application. Here is what I need to do, Each and every day I need to put entry to the last column in my spreadsheet. I know there is a simple way in Google Apps Script and my script is:
var ss= SpreadsheetApp.openById(id);
var sheet=ss.getSheetByName("Sheet1");
sheet.getRange(0, sheet.getLastColumn() + 1).setValue(myData);
I need to know if there is a similar way to do this in android(java) other than connecting my android application and this script via HttpURLConnection.
Thanks.