-
Notifications
You must be signed in to change notification settings - Fork 2
appcenter
Patryk Kaczmarek edited this page Oct 1, 2020
·
5 revisions
Used to upload IPA to App Center. Additional plugin is required to run this step.
Please add to your Gemfile
:
gem 'fastlane-plugin-appcenter'
Your App Center API token. See how to generate token.
- Required: True
- Type: String
Your application name.
- Required: True
- Type: String
Groups for which application will be distributed.
- Required: False
- Type: String
- Default: " * "
Path to your symbols file. Step will use dsym from ipa directory by default.
- Required: False
- Type: String
Indicates whether distribution groups should be notified.
- Required: False
- Type: Bool
- Default: False
App Center account name of the owner of the app.
- Required: True
- Type: String
Indicates whether only dsym should be uploaded.
- Required: False
- Type: Bool
- Default: False
Release notes given as a string that will be added to the App Center release.
- Required: False
- Type: String
- Default: ""
deploy:
staging:
- appcenter:
api_token: "1234abcde"
owner_name: "owner"
app_name: "MyApp"
distribution_group: "Testers"
notify: true
This wiki and the Highway README document contains a lot of information, please take your time and read these instructions carefully.