I'm developing a interface for a user who uses a google spreadsheet as his database. Nowadays he uses the Google Sheet mobile App (Android and IOs) to update his spreadsheet, and I just can't find any way to create a interface or even call a function on the mobile app. Does anyone knows how can I call a function from the script I've created on the Google Sheets Mobile app? Thanks!
相关问题
- How can I create this custom Bottom Navigation on
- Bottom Navigation View gets Shrink Down
- How to make that the snackbar action button be sho
- How can I force all files in a folder to be owned
- Listening to outgoing sms not working android
You cannot execute Google App Script functions (gas functions) via Google Sheets mobile app.
Alternative #1:
Create Android Add-on
Source: https://developers.google.com/apps-script/add-ons/mobile/
Alternative #2
Create a web-app and use Google's Execution API
Source: https://developers.google.com/apps-script/guides/rest/api
Custom functions
andonEdit
triggers work well with the mobile versions of Google sheets.