Distributing React Native App via Microsoft Appcenter

Distributing React Native App via Microsoft Appcenter

05 October 2021

After all the hard work you have done in building the app, its time to distribute it. There are various mediums through which distribution can be done. Ad hoc distributions are mainly done using Diawi, uploading to cloud storage etc.
Here we will take a look at Appcenter. It is a distribution tool by Microsoft.

When using Appcenter, you can track the number of downloads, region of download and much more. It also keeps track of the builds so you can trace back if something went wrong in between.

 Getting Started

  1. If you’ve already created your app in the App Center portal, you can skip this step.
    1. Go to appcenter.ms.
    2. Sign up or log in and click Add new and select Add new app from the dropdown menu.
    3. Enter a name and an optional description.
    4. Select the appropriate OS (Android or iOS) and select React Native as the platform.
    5. Hit the button at the bottom right that says Add new app.
    6. Once you’ve created an app, you can see App Secret on the Settings page. It will be used later.
  2. Install SDKs to your app:
    NPM: npm install appcenter appcenter-analytics appcenter-crashes –save-exact
    YARN: yarn add appcenter appcenter-analytics appcenter-crashes –exact
  3. Integrating the SDKs: For integrating the SDKs you can find the official documentation here.
  4. Create ad hoc builds for respective environments with the respective keys.
  5. Go to the app page in appcenter, click on create new release and upload the builds.
  6. Create testing groups to distribute the builds to the users.
  7. Release the app.

Users will get a mail from Appcenter that a new App is uploaded. Users can download the app using the link given in the email.

You can also see the analytics by going to the analytics tab.

search
Blog Categories
Request a quote