is there a possibility to link to an application listing on AppGallery?
On google we would tipically do this:
http://play.google.com/store/apps/details?id=com.example.myapp
I found this page: https://developer.huawei.com/consumer/en/doc/development/AppGallery-connect-Guides/agc-applinking-createlinks-byagc, but this seems to be different from what I am asking.
Update:
Joint operations services provides the capability of Updating an App. Your app can call the update API of the HMS Core SDK to check whether there is a later version available on AppGallery and display a pop-up asking the user whether to update the app.
Development Process:
A user triggers an update check, for example, by launching the app or manually performing the check on the update check page.
The app calls JosApps.getAppUpdateClient to request to initialize the AppUpdateClient instance.
The HMS Core SDK returns the AppUpdateClient instance of the current app to the app.
The app calls the AppUpdateClient.checkAppUpdate method to request an update check.
The HMS Core SDK queries the latest app version information on AppGallery.
AppGallery sends the app version information back to the HMS Core SDK.
The HMS Core SDK sends the check result to the app through a callback.
The app checks the ApkUpgradeInfo instance returned by the onUpdateInfo method in the callback result and checks whether an update is available.
The HMS Core SDK displays the update pop-up for the user.
The user chooses to update the app on the update confirmation page.
The HMS Core SDK sends a request to AppGallery to download the latest app installation package.
AppGallery returns the app package to the HMS Core SDK. The HMS Core SDK starts to install the app after the download is complete.
You can use the badge service provided by HUAWEI AppGallery to collect statistics on app downloads in AppGallery and provide the silent installation service for users.
When a user taps your badge in a channel, the user is redirected to your app details page on AppGallery. The user can tap Install to automatically download and install your app.
Making a badge