Reputation: 139
I've been trying to submit a google sheets editor add on to the google workspace marketplace for the last few weeks, and have been stymied by feedback from the review team that my app is configured as a "Workspace Add-On" while it has the behavior of an "Editor Add-On". Note that it is supposed to be the latter, and I can't, for the life of me, figure out why its being classified as the prior. My best guess is that it is due to my appscript.json
configuration, but maybe I'm mistaken and it's something else.
If it is the appscript.json file, could anyone guide me towards how that is supposed to look for a sheets editor add-on? Current file below:
{
"timeZone": "America/Los_Angeles",
"dependencies": {},
"exceptionLogging": "STACKDRIVER",
"runtimeVersion": "V8",
"oauthScopes": [
"https://www.googleapis.com/auth/spreadsheets.currentonly",
"https://www.googleapis.com/auth/script.external_request",
"https://www.googleapis.com/auth/script.container.ui"
],
"urlFetchWhitelist": [
"https://example.com"
]
}
Upvotes: 1
Views: 59