(Android) Deploy to Bitrise.io
Instructions
Deploying a release build
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.
-
Add the Android Build Step and set the following inputs:
-
Build type: Set this to .
-
Variant: Use
release,debug, or one of your custom variants if you have any.
-
-
If you build a release variant, add the Android Sign Step.
You can skip this if you plan to deploy an unsigned debug variant.
-
Add a Deploy to Bitrise.io - Apps, Logs, Artifacts Step.
bitrise.yml
- android-build@1:
inputs:
- variant: release
- build_type: apk
- sign-apk@1: {}
- deploy-to-bitrise-io@2: {}