Training
Module
Learn to publish Teams apps in Microsoft Teams Store - Training
In this module, we'll discuss how to publish Teams app in Microsoft Teams Store.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Important
Visual Studio App Center is scheduled for retirement on March 31, 2025. While you can continue to use Visual Studio App Center until it is fully retired, there are several recommended alternatives that you may consider migrating to.
Publish an update to Google Play Store, including the Alpha and Beta tracks from App Center.
.aab
files.For more information, review How to use the Google Play console.
To access the Google API, link your Google Play Console to a Google API project. In most cases, we recommend you create a new API project, although current API users can link to an existing API project. Keep in mind that each API project can only be linked to a single Google Play Console account.
Creating a new API project
Using an existing API project
One of the added benefits of creating a Google service account is access to the API from a build server without providing your personal user credentials, below is a step-by-step guide on how to set up Google service account:
Go to the Google API Access page on the Google Play Console.
Under Service Accounts, click the Create Service Account button to begin the process.
In the instructions, click the link to the Google API Console.
Click the CREATE SERVICE ACCOUNT button, on the newly opened page.
The Create service account page opens.
Choose a name for the new Service Account, and click Create.
Click the Select a role in the drop-down menu. Select Project, then Owner. Navigate to the next step by clicking Continue.
Note
Some users can't download the .json file using Edge and Internet Explorer.
On the new page, click + Create Key (optional) and a modal appears.
Select JSON and click CREATE and a file with the .json
extension will download to your system; this file will be used in App Center to establish the connection to Google Play.
Once you've created the service account on the Google Developers Console, click Done. The API Access page automatically refreshes, and your service account will be listed.
Close the window and the new service account shows on the original page. Click the Grant Access button to complete the process. In the next section, you'll learn how to connect App Center with Google Play.
.apk
files generated from the .aab
can't exceed 150 MB. You can read more about your options at Google's docs for AAB..aab
must be strictly greater than the current version in production..apk
must be zipaligned during the app-building process..apk
must be strictly greater than the current version in production.Warning
You need App Center CLI 2.7 or newer to use this feature.
Using the CLI is an easy way to integrate the App Center's store connection as part of your CI/CD setup like Jenkins or Go CI.
Before you can use the CLI, you'll need to establish a connection to a destination, that is, Google Play, App Store, or Intune in the App Center. And compile a binary that works with your destination.
You can list your stores by using the list command like this:
appcenter distribute stores list \
--app {app_owner}/{app_name} \
--output json
You'll get a result like this:
[["Alpha","googleplay","alpha"],["Beta","googleplay","beta"],["Production","googleplay","production"]
And it's the Store column we'll use in the final step.
The final step is to publish your app by running:
appcenter distribute stores publish \
--file /path/to/file.aab \
--store Production \
--app {app_owner}/{app_name} \
--release-notes "Some note."
You'll need to fill in the blanks like the list command. Instead of having a static release note, it's possible to use the --release-notes-file
instead. A release note file is plain text file encoded with UTF-8.
Training
Module
Learn to publish Teams apps in Microsoft Teams Store - Training
In this module, we'll discuss how to publish Teams app in Microsoft Teams Store.
Documentation
Publishing to Google Play fails because the app isn't found - Visual Studio App Center
Troubleshooting guide about creating an app package in Google Play Console that App Center can connect to and work with Google Play
Build, test, and deploy Android apps - Azure Pipelines
Automatically build, test, and deploy Android projects with Azure Pipelines.
Connecting to Google Play fails because the app isn't published yet - Visual Studio App Center
How to publish to enable the connection