---
title: "How to Integrate with CI/CD Pipeline"
description: "Learn how to integrate the DoveRunner Mobile App Security CLI tool with your CI/CD pipeline for automated mobile app protection."
---
> For the complete documentation index, see [llms.txt](/llms.txt).

DoveRunner Mobile App Security provides a CLI tool (Command line interface tool) to integrate with any CI/CD pipeline.

This CLI tool helps developers to upload APK or App Bundle (AAB) to DoveRunner Mobile App Security server and automatically download the sealed APK or AAB file without log in to the web console.

You can download the CLI tool at the DoveRunner Mobile App Security console.

Note: This CLI tool only supports Android security services. iOS DoveRunner Mobile App Security service is SDK based, so you can download the SDK and integrate with your project and CI/CD pipeline directly.

## Download CLI tool

To download CLI tool (console) :
1. Open the DoveRunner console at [https://console.doverunner.com](https://console.doverunner.com)
2. Login with DoveRunner Mobile App Security account credentials
3. Click Organization -> Third party -> CLI Tool for Android AppSealing
4. Click on **Download**, and CLI key is used to authenticate tool for your account (auth_key). 
5. The downloaded CLI tool is including a guide for basic setup and integration with Jenkins
   
![cli download](/img/mobile-app-security/console-aos-cli-download.png)

## Installing DoveRunner Mobile App Security CLI Tool

Extract the compressed file to the preferred directory and grant authorization.

Linux & Mac:
```bash
# mkdir /opt/appsealing 
# cd /opt/appsealing
# unzip SealingTool.zip 
# rm -rf SealingTool.zip 
# cd ..
# chmod -R 750 appsealing/
# chown -R 6jenkins:6jenkins appsealing/
```

Windows batch:

```bash
@echo off
mkdir C:\opt\appsealing
cd C:\opt\appsealing
tar -xf SealingTool.zip
del SealingTool.zip
cd ..
icacls appsealing /grant:r jenkins:F /inheritance:e /T
icacls appsealing /remove:g "Users" /T
icacls appsealing /remove:g "Authenticated Users" /T
```