Skip to content

Latest commit

 

History

History
39 lines (31 loc) · 1.88 KB

android-deploy-to-appcenter.md

File metadata and controls

39 lines (31 loc) · 1.88 KB

(Android) Deploy to Visual Studio App Center

Description

Build and distribute your app to testers via Visual Studio App Center.

Prerequisites

  1. An existing Visual Studio App Center project where your app is registered.
  2. Adding the API token as a Secret to your Bitrise app with the name APPCENTER_API_TOKEN.
  3. If you want to deploy a release build, don't forget to set up code signing on Bitrise to build and sign the APK with your release key.

Instructions

  1. Add the Android Build Step and set the following inputs:
    • Build type: Set this to apk.
    • Variant: Use release, debug, or one of your custom variants if you have any.
  2. If you build a release variant, add the Android Sign Step. You can skip this if you plan to deploy an unsigned debug variant.
  3. Add the AppCenter Android Deploy step and set the following inputs:
    • API Token: $APPCENTER_API_TOKEN
    • Owner name: For example, my-company.
    • App name: For example, my-app. Use the App Center CLI to get the app name since it might not be the same as the one you can see on the Visual Studio App Center website.
    • Check out other options in the Step documentation or in the Workflow Editor.

bitrise.yml

- android-build@1:
    inputs:
    - variant: release
    - build_type: apk
- sign-apk@1: {}
- appcenter-deploy-android@2:
    inputs:
    - owner_name: my-company
    - app_name: my-app
    - app_path: $BITRISE_APK_PATH
    - api_token: $APPCENTER_API_TOKEN