New Coder
New Coder

Reputation: 127

Google Workspace Marketplace: Apps with multiple App types configured in Marketplace SDK

I have a google docs addon published on Google workspace marketplace, recently I received an email from google which mentions that my addon is violating below mentioned policy. enter image description here

I am unable to understand which configuration google want me to change in google console. could anyone with experience in this issue/configuration help me out please.

Edit: My Appscript.json

enter image description here

Upvotes: 0

Views: 322

Answers (1)

Giselle Valladares
Giselle Valladares

Reputation: 2261

The issue is inside the Google Workspace Marketplace SDK configuration, what you need to do is the following:

  1. Access to GCP.
  2. Select the project link to your add-on.
  3. Search for Google Workspace Marketplace SDK, and select the first option.

Google Workspace Marketplace SDK

  1. Click Manage.
  2. Under App configuration, search for App Integration.
  3. You need to select only one option for the app, if you have Google Workspace Add-on or remove any other option different to Docs Add-on.

App Integration

This is because if you select Google Workspace Add-on this will deploy the add-on for all the Google Services even when the app is not meant to be use with the other Google services, and in your case (based on your description) the Add-on only works for Google Docs.

Base on the Google Workspace documentation here

Some app integrations can be combined in your app listing. For example, if your app enhances the functionality of Sheets and is also accessible as a web app, you can publish an app listing that includes a Sheets add-on and a web app that’s added to the Google apps menu apps across Google Workspace products.

You can read the following documentation here, with more information about things to consider if you want to use multiple app integrations.

Upvotes: 1

Related Questions