Ruben Lopez
Ruben Lopez

Reputation: 734

Application not published in G Suite marketplace

We have an application published in G Suite marketplace and it has suddenly disappeared.

We guess the problem is related with the migration from Chrome webstore, but we have updated the manifest following the steps in the documentation and the application is still not listed in any of them. However, we cannot find the app by url in G Suite marketplace but we can find it by url in Chrome webstore, what seems pretty strange.

Google Marketplace SDK is enabled and configured in Google Cloud Platform.

I read in the documentation that "Chrome Apps must use manifest version 2", so I don't know if we need to set this to version 1 for G Suite applications.

We are using the same manifest as the documentation, but including "GOOGLE_DRIVE" in the container:

{
  "manifest_version": 2,
  "name": "Welcome Aboard",
  "version": "0.0.0.1",
  "description": "a plain text description",
  "icons": {
    "128": "icons/128x128-icon.png",
    "16": "icons/16x16-icon.png"
  },
  "container": ["DOMAIN_INSTALLABLE","GOOGLE_DRIVE"],
  "api_console_project_id": "428464274542",
  "app" : {
    "launch" : {
      "web_url" : "http://www.example.com/morepath/"
    }
  }
}

Are we missing something?

Thank you in advance!

Upvotes: 1

Views: 617

Answers (2)

Ruben Lopez
Ruben Lopez

Reputation: 734

The problem is solved. We guess the manifest was old and needed to be reuploaded, after that it's just a matter of time because Google needs to validate it.

Anyway we created a support ticket for Google and they didn't mention anything about that. In fact they didn't clarify what was the problem. Maybe they have accelerated the validation process after we contacted them.

JV: Adding link to Google Support Thread https://issuetracker.google.com/issues/71747494

Upvotes: 1

ReyAnthonyRenacia
ReyAnthonyRenacia

Reputation: 17651

From Chrome Apps to the Web

Update on December 5, 2017:

Chrome Apps will be removed from Chrome Web Store search & browse functions in mid-December 2017. Existing apps will continue to work and receive updates. The Chrome browser will continue to load packaged and hosted apps on Windows, Mac, and Linux beyond the previously announced deprecation timeline. Another update will be posted here when a new date for the Chrome Apps EOL on Windows, Mac, and Linux has been finalized.

Upvotes: 0

Related Questions