DEV Community

Cover image for How to build, sign, and distribute your Android App using Azure Pipelines? [Explained]
Nagaraj Alagusundaram
Nagaraj Alagusundaram

Posted on

How to build, sign, and distribute your Android App using Azure Pipelines? [Explained]

As a mobile developer, I know the pain of building the APKs regularly and sharing the latest version with different teams. Additionally, we need to upload the newest version to the Microsoft AppCenter and Google PlayStore. A minor mistake in the routine may lead to some serious trouble. For any unforeseen issue, the best solution is to automate the process.

Here at XAM, we use Azure Pipelines to build, Sign & publish the APKs without any manual intervention and thus preventing the time taken for the repeated tasks.

Continuous Integration – Azure DevOps:

Today I’m going to explain the process involved in Continuous Integration using the Azure DevOps for Android.

The advantages of Azure DevOps are

Accessible anywhere
No server maintenance
Good community support
Often updated
Low cost
Enter fullscreen mode Exit fullscreen mode

Steps:

Setup Android project:

I have created a simple Hello World Android project in GitHub for your convenience. In the root folder, you should find a YAML file named ‘pipelines_android.yml’. If you don’t want to create it from scratch, please make sure you commit this file to your repo.

Got to your project

Pipelines-> Create Pipeline
Alt Text

Select your repo source

Alt Text

Since you’ve already added the YAML file, select the existing file to create a pipeline.

Alt Text

Else you can create a new YAML file by selecting the appropriate option.

I have already added the parameters to the pipelines. Please add as many parameters as you need.

Allow the user to select the build type and their preferred operating system.

Alt Text

Next, create a triggering point for this pipeline.

Alt Text

In my pipeline, I’ve added the branch “master” as a trigger. So, whenever there is a pull request merged on the master branch, this pipeline will start.

Create a variable group, as shown below.

Alt Text

To create a new variable group:

Goto Pipelines-> Library
Click + Variable group
Add a variable group name.
Add variables.

Alt Text

Clean the workspace and then add a pool image.
Alt Text

The first step is to create Gradle@2, as shown below.

Alt Text

The next task is to sign the generated APK.

Alt Text

After Signing the APK, now we will have to publish the artifacts.

Alt Text

After publishing it internally, let’s publish the artifacts to the AppCenter.

Go to https://appcenter.ms/apps/create and create a new App.

Alt Text

Once the App created in AppCenter, now introduce a testing group.

Alt Text

Alt Text

Click the spanner icon and make a note of the group id.

Alt Text

The next step is to create a service connection between Azure DevOps and AppCenter.

In AppCenter, go to the account settings page and add a new API token.

Alt Text

In Azure DevOps:
Click the Settings menu (gear icon) in Azure DevOps.
Click the “Service Connection” menu on the left.

Alt Text

Choose “Visual Studio App Center” and click the Next button.

Alt Text

Paste the copied token, give an appropriate name for this connection, and click Save.

Alt Text

Go to Library-> Add new Variable group.
Add AppCenter Connection.
Add Slug Id: Username/AppName
Add Group Id: paste the copied group id.

Alt Text

Then in the pipeline, add the AppCenterDistribute@3 task.

Alt Text

Build the pipeline, and you should see the artifacts uploaded in the AppCenter.

Alt Text

If you have any doubts, let’s chat.

To download YAML file: Click here

If you think there is a better solution, please feel free to fork my GitHub repository.

Top comments (0)