_deliver_ uploads screenshots, metadata and binaries to App Store Connect. Use _deliver_ to submit your app for App Store review.
-------
Features •
Quick Start •
Usage •
Tips
-------
deliver
is part of fastlane: The easiest way to automate beta deployments and releases for your iOS and Android apps.
# Features
- Upload hundreds of localized screenshots completely automatically
- Upload a new ipa/pkg file to App Store Connect without Xcode from any Mac
- Maintain your app metadata locally and push changes back to App Store Connect
- Easily implement a real Continuous Deployment process using [_fastlane_](https://fastlane.tools)
- Store the configuration in git to easily deploy from **any** Mac, including your Continuous Integration server
- Get a HTML preview of the fetched metadata before uploading the app metadata and screenshots to iTC
- Automatically uses [_precheck_](/actions/precheck/) to ensure your app has the highest chances of passing app review the first time
To upload builds to TestFlight check out [_pilot_](/actions/pilot/).
# Quick Start
The guide will create all the necessary files for you, using the existing app metadata from App Store Connect.
- `cd [your_project_folder]`
- `fastlane deliver init`
- Enter your App Store Connect credentials
- Enter your app identifier
- Enjoy a good drink, while the computer does all the work for you
From now on, you can run `fastlane deliver` to deploy a new update, or just upload new app metadata and screenshots.
# Usage
Check out your local `./fastlane/metadata` and `./fastlane/screenshots` folders (if you don't use [_fastlane_](https://fastlane.tools) it's `./metadata` instead)
![/img/actions/deliver_metadata.png](/img/actions/deliver_metadata.png)
You'll see your metadata from App Store Connect. Feel free to store the metadata in git (not the screenshots). You can now modify it locally and push the changes back to App Store Connect.
Run `fastlane deliver` to upload the app metadata from your local machine
```no-highlight
fastlane deliver
```
Provide the path to an `ipa` file to upload and submit your app for review:
```no-highlight
fastlane deliver --ipa "App.ipa" --submit_for_review
```
or you can specify path to `pkg` file for macOS apps:
```no-highlight
fastlane deliver --pkg "MacApp.pkg"
```
If you use [_fastlane_](https://fastlane.tools) you don't have to manually specify the path to your `ipa`/`pkg` file.
This is just a small sub-set of what you can do with _deliver_, check out the full documentation in [#more-options](#more-options)
Download existing screenshots from App Store Connect
```no-highlight
fastlane deliver download_screenshots
```
Download existing metadata from App Store Connect
```no-highlight
fastlane deliver download_metadata
```
To get a list of available options run
```no-highlight
fastlane action deliver
```
### Use in a `Fastfile`
```ruby
deliver
```
```ruby
deliver(
submit_for_review: true,
force: true,
metadata_path: "./metadata"
)
```
## More options
View all available options and their valid values
## Available options
All the options below can easily be added to your `Deliverfile`. The great thing: if you use _fastlane_ you can use all these options from your `Fastfile` too, for example:
```ruby
deliver(
submit_for_review: true,
metadata_path: "../folder"
)
```
##### app_identifier
The bundle identifier (e.g. "com.krausefx.app")
##### username
Your Apple ID email address
##### ipa
A path to a signed ipa file, which will be uploaded. If you don't provide this value, only app metadata will be uploaded. If you want to submit the app for review make sure to either use `fastlane deliver --submit_for_review` or add `submit_for_review true` to your `Deliverfile`
```ruby-skip-tests
ipa("App.ipa")
```
if you use [_fastlane_](https://fastlane.tools) the ipa file will automatically be detected.
##### pkg
A path to a signed pkg file, which will be uploaded. Submission logic of ipa applies to pkg files.
```ruby-skip-tests
pkg("MacApp.pkg")
```
##### app_version
Optional, as it is usually automatically detected. Specify the version that should be created / edited on App Store Connect:
```ruby-skip-tests
app_version("2.0")
```
##### skip_app_version_update
In the case if _deliver_ uploads your application to App Store Connect it will automatically update "Prepare for submission" app version (which could be found on App Store Connect->My Apps->App Store page)
The option allows uploading your app without updating "Prepare for submission" version.
This could be useful in the case if you are generating a lot of uploads while not submitting the latest build for Apple review.
The default value is false.
```ruby-skip-tests
skip_app_version_update(true)
```
##### submit_for_review
Add this to your `Deliverfile` to automatically submit the app for review after uploading metadata/binary. This will select the latest build.
```ruby-skip-tests
submit_for_review(true)
```
##### screenshots_path
A path to a folder containing subfolders for each language. This will automatically detect the device type based on the image resolution. Also includes Watch Support.
![/img/actions/deliver_screenshots.png](/img/actions/deliver_screenshots.png)
##### metadata_path
Path to the metadata you want to use. The folder has to be structured like this
![/img/actions/deliver_metadata.png](/img/actions/deliver_metadata.png)
If you run `deliver init` this will automatically be created for you.
##### force
```ruby-skip-tests
force(true)
```
If set to `true`, no HTML report will be generated before the actual upload. You can also pass `--force` when calling _deliver_.
##### price_tier
Pass the price tier as number. This will be active from the current day.
```ruby-skip-tests
price_tier 0
```
##### trade_representative_contact_information
Trade Representative Contact information for Korean App Store. Available options: `first_name`, `last_name`, `address_line1`, `address_line2`, `address_line3`, `city_name`, `state`, `country`, `postal_code`, `phone_number`, `email_address`, `is_displayed_on_app_store`.
```ruby-skip-tests
trade_representative_contact_information(
first_name: "Felix",
last_name: "Krause",
address_line1: "1 Infinite Loop",
address_line2: "",
address_line3: null,
city_name: "Cupertino",
state: "California",
country: "United States",
postal_code: "95014",
phone_number: "+43 123123123",
email_address: "github@krausefx.com",
)
```
You can also provide these values by creating files in a `metadata/trade_representative_contact_information/` directory. The file names must match the pattern `.txt` (e.g. `first_name.txt`, `address_line1.txt` etc.). The contents of each file will be used as the value for the matching key. Values provided in the `Deliverfile` or `Fastfile` will be take priority over values from these files.
`is_displayed_on_app_store` is the option on App Store Connect described as: `Display Trade Representative Contact Information on the Korean App Store`
##### app_review_information
Contact information for the app review team. Available options: `first_name`, `last_name`, `phone_number`, `email_address`, `demo_user`, `demo_password`, `notes`.
```ruby-skip-tests
app_review_information(
first_name: "Felix",
last_name: "Krause",
phone_number: "+43 123123123",
email_address: "github@krausefx.com",
demo_user: "demoUser",
demo_password: "demoPass",
notes: "such notes, very text"
)
```
You can also provide these values by creating files in a `metadata/review_information/` directory. The file names must match the pattern `.txt` (e.g. `first_name.txt`, `notes.txt` etc.). The contents of each file will be used as the value for the matching key. Values provided in the `Deliverfile` or `Fastfile` will be take priority over values from these files.
##### app_review_attachment_file
You can provide additional information to the app review team as a file attachment. As of this writing, Apple supports following file attachment formats: .pdf, .doc, .docx, .rtf, .pages, .xls, .xlsx, .numbers, .zip, .rar, .plist, .crash, .jpg, .png, .mp4, or .avi.
Provide an empty string (i.e. "", not null) to remove the existing attachment file (if any) from the review information being edited.
```ruby-skip-tests
app_review_attachment_file: "./readme.txt"
```
##### submission_information
Must be a hash. This is used as the last step for the deployment process, where you define if you use third party content or use encryption. [A list of available options](https://github.com/fastlane/fastlane/blob/master/spaceship/lib/spaceship/tunes/app_submission.rb).
```ruby-skip-tests
submission_information({
add_id_info_serves_ads: true,
...
})
```
##### automatic_release
Should the app be released to all users once Apple approves it? If set to `false`, you'll have to manually release the update once it got approved.
```ruby-skip-tests
automatic_release(true)
# or
automatic_release(false)
```
##### phased_release
Enable or disable the phased releases feature of App Store Connect. If set to `true`, the update will be released over a 7 day period. Default behavior is to leave whatever you defined on App Store Connect.
```ruby-skip-tests
phased_release(true)
# or
phased_release(false)
```
##### reset_ratings
Reset your app's summary rating for all territories. If set to `true`, it will reset rating when this version is released. Default behavior is to keep existing rating.
```ruby-skip-tests
reset_ratings(true)
# or
reset_ratings(false)
```
##### app_rating_config_path
You can set the app age ratings using _deliver_. You'll have to create and store a `JSON` configuration file. Copy the [template](https://github.com/fastlane/fastlane/blob/master/deliver/assets/example_rating_config.json) to your project folder and pass the path to the `JSON` file using the `app_rating_config_path` option.
The keys/values on the top allow values from 0-2, and the items on the bottom allow only 0 or 1. More information in [#reference](#reference).
## Metadata
All options below are useful if you want to specify certain app metadata in your `Deliverfile` or `Fastfile`
### Localized
Localized values should be set like this
```ruby-skip-tests
description({
'en-US' => "English Description here",
'de-DE' => "Deutsche Beschreibung hier"
})
```
##### name
The title/name of the app
##### subtitle
Localized subtitle of the app
```ruby-skip-tests
subtitle(
"en-US" => "Awesome English subtitle here",
"de-DE" => "Jetzt mit deutschen Untertiteln!"
)
```
##### description
The description of the app
##### release_notes
The release_notes (What's new / Changelog) of the latest version
##### support_url, marketing_url, privacy_url
These URLs are shown in the AppStore
##### keywords
Keywords separated using a comma.
```ruby-skip-tests
keywords(
"en-US" => "Keyword1, Keyword2"
)
```
##### promotional_text
Localized promotional text
```ruby-skip-tests
promotional_text(
"en-US" => "Hey, you should totally buy our app, it's the best",
"de-DE" => "App kaufen bitte"
)
```
##### app_icon
A path to a new app icon, which must be exactly 1024x1024px
```ruby-skip-tests
app_icon('./AppIcon.png')
```
##### apple_watch_app_icon
A path to a new app icon for the Watch, which must be exactly 1024x1024px
```ruby-skip-tests
apple_watch_app_icon('./AppleWatchAppIcon.png')
```
##### platform
The platform of your application (a.e. ios, osx).
This option is optional. The default value is "ios" and deliver should be able to figure out the platform from your binary.
However, in the case if multiple binaries present, you can specify a platform which you want to deliver explicitly.
The available options:
- 'ios'
- 'appletvos'
- 'osx'
### Non-Localized
##### copyright
The up to date copyright information.
```ruby-skip-tests
copyright("#{Time.now.year} Felix Krause")
```
##### primary_category
The english name of the category you want to set (e.g. `Business`, `Books`)
See [#reference](#reference) for a list of available categories
##### secondary_category
The english name of the secondary category you want to set
##### primary_first_sub_category
The english name of the primary first sub category you want to set
##### primary_second_sub_category
The english name of the primary second sub category you want to set
##### secondary_first_sub_category
The english name of the secondary first sub category you want to set
##### secondary_second_sub_category
The english name of the secondary second sub category you want to set
# Submit Build
_deliver_ allows you to promote an existing build to production. Below are examples to select a previously uploaded build and submit it for review.
```no-highlight
fastlane deliver submit_build --build_number 830
```
### Submit build in a `Fastfile`
```ruby
lane :submit_review do
deliver(
build_number: '830',
submit_for_review: true,
automatic_release: true,
force: true, # Skip HTMl report verification
skip_metadata: true,
skip_screenshots: true,
skip_binary_upload: true
)
end
```
Omit `build_number` to let _fastlane_ automatically select the latest build number for the current version being edited for release from App Store Connect.
### Compliance and IDFA settings
Use the `submission_information` parameter for additional submission specifiers, including compliance and IDFA settings. Look at the Spaceship's [`app_submission.rb`](https://github.com/fastlane/fastlane/blob/master/spaceship/lib/spaceship/tunes/app_submission.rb) file for options. See [this example](https://github.com/artsy/eigen/blob/faa02e2746194d8d7c11899474de9c517435eca4/fastlane/Fastfile#L131-L149).
```no-highlight
fastlane deliver submit_build --build_number 830 --submission_information "{\"export_compliance_uses_encryption\": false, \"add_id_info_uses_idfa\": false }"
```
# Credentials
A detailed description about how your credentials are handled is available in a [credentials_manager](https://github.com/fastlane/fastlane/tree/master/credentials_manager).
### How does this thing even work? Is magic involved? 🎩
Your password will be stored in the macOS keychain, but can also be passed using environment variables. (More information available on [CredentialsManager](https://github.com/fastlane/fastlane/tree/master/credentials_manager))
Before actually uploading anything to iTunes, _deliver_ will generate a HTML summary of the collected data.
_deliver_ uses the following techniques under the hood:
- The iTMSTransporter tool is used to upload the binary to App Store Connect. iTMSTransporter is a command line tool provided by Apple.
- For all metadata related actions _deliver_ uses [_spaceship_](https://github.com/fastlane/fastlane/tree/master/spaceship)
# Tips
## Available language codes
```no-highlight
<%= FastlaneCore::Languages::ALL_LANGUAGES.join(', ') %>
```
## Available Metadata Folder Options
_deliver_ allows for metadata to be set through `.txt` files in the metadata folder. This metadata folder location is defaulted to `./fastlane/metadata` but can be overridden through the `metadata_path` parameter. Below are all allowed metadata options.
<%- require 'deliver' -%>
### Non-Localized Metadata
Key | Editable While Live | Directory | Filename
----|--------|--------|--------
<%- (Deliver::UploadMetadata::NON_LOCALISED_VERSION_VALUES.keys + Deliver::UploadMetadata::NON_LOCALISED_APP_VALUES.keys).each do |value| -%>
`<%= value %>` | <%= Deliver::UploadMetadata::NON_LOCALISED_LIVE_VALUES.include?(value) ? 'Yes' : 'No' %> | `` | `<%= value %>.txt`
<%- end %>
### Localized Metadata
Key | Editable While Live | Directory | Filename
----|--------|--------|--------
<%- (Deliver::UploadMetadata::LOCALISED_APP_VALUES.keys + Deliver::UploadMetadata::LOCALISED_VERSION_VALUES.keys).each do |value| -%>
`<%= value %>` | <%= Deliver::UploadMetadata::LOCALISED_LIVE_VALUES.include?(value) ? 'Yes' : 'No' %> | `//` | `<%= value %>.txt`
<%- end %>
### Review Information Metadata
Key | Editable While Live | Directory | Filename | Deprecated Filename
----|--------|--------|--------|--------
<%- Deliver::UploadMetadata::REVIEW_INFORMATION_VALUES_LEGACY.each do |key, value| -%>
`<%= value %>` | Yes | `/<%= Deliver::UploadMetadata::REVIEW_INFORMATION_DIR %>` | `<%= value %>.txt` | `<%= key %>.txt`
<%- end %>
## Reference
View all available categories, etc.
### Available Categories
- `FOOD_AND_DRINK`
- `BUSINESS`
- `EDUCATION`
- `SOCIAL_NETWORKING`
- `BOOKS`
- `SPORTS`
- `FINANCE`
- `REFERENCE`
- `GRAPHICS_AND_DESIGN`
- `DEVELOPER_TOOLS`
- `HEALTH_AND_FITNESS`
- `MUSIC`
- `WEATHER`
- `TRAVEL`
- `ENTERTAINMENT`
- `STICKERS`
- `GAMES`
- `LIFESTYLE`
- `MEDICAL`
- `MAGAZINES_AND_NEWSPAPERS`
- `UTILITIES`
- `SHOPPING`
- `PRODUCTIVITY`
- `NEWS`
- `PHOTO_AND_VIDEO`
- `NAVIGATION`
### Available Game Subcategories
- `MZGenre.Action`
- `MZGenre.Adventure`
- `MZGenre.Arcade`
- `MZGenre.Board`
- `MZGenre.Card`
- `MZGenre.Casino`
- `MZGenre.Dice`
- `MZGenre.Educational`
- `MZGenre.Family`
- `MZGenre.Music`
- `MZGenre.Puzzle`
- `MZGenre.Racing`
- `MZGenre.RolePlaying`
- `MZGenre.Simulation`
- `MZGenre.Sports`
- `MZGenre.Strategy`
- `MZGenre.Trivia`
- `MZGenre.Word`
- `GAMES_SPORTS`
- `GAMES_WORD`
- `GAMES_MUSIC`
- `GAMES_ADVENTURE`
- `GAMES_ACTION`
- `GAMES_ROLE_PLAYING`
- `GAMES_CASUAL`
- `GAMES_BOARD`
- `GAMES_TRIVIA`
- `GAMES_CARD`
- `GAMES_PUZZLE`
- `GAMES_CASINO`
- `GAMES_STRATEGY`
- `GAMES_SIMULATION`
- `GAMES_RACING`
- `GAMES_FAMILY`
### Available Stickers Subcategories
- `STICKERS_PLACES_AND_OBJECTS`
- `STICKERS_EMOJI_AND_EXPRESSIONS`
- `STICKERS_CELEBRATIONS`
- `STICKERS_CELEBRITIES`
- `STICKERS_MOVIES_AND_TV`
- `STICKERS_SPORTS_AND_ACTIVITIES`
- `STICKERS_EATING_AND_DRINKING`
- `STICKERS_CHARACTERS`
- `STICKERS_ANIMALS`
- `STICKERS_FASHION`
- `STICKERS_ART`
- `STICKERS_GAMING`
- `STICKERS_KIDS_AND_FAMILY`
- `STICKERS_PEOPLE`
- `STICKERS_MUSIC`
### Available age rating groups
#### Non Boolean
**Values**
- 0: None
- 1: Infrequent/Mild
- 2: Frequent/Intense
- `NONE`
- `INFREQUENT_OR_MILD`
- `FREQUENT_OR_INTENSE`
**Keys**
- `violenceCartoonOrFantasy`
- `violenceRealistic`
- `violenceRealisticProlongedGraphicOrSadistic`
- `profanityOrCrudeHumor`
- `matureOrSuggestiveThemes`
- `horrorOrFearThemes`
- `medicalOrTreatmentInformation`
- `alcoholTobaccoOrDrugUseOrReferences`
- `gamblingSimulated`
- `sexualContentOrNudity`
- `sexualContentGraphicAndNudity`
#### Boolean
**Keys**
- `unrestrictedWebAccess`
- `gamblingAndContests`
## Default values
Deliver has a special `default` language code which allows you to provide values that are not localized, and which will be used as defaults when you don’t provide a specific localized value.
In order to use `default`, you will need to tell _deliver_ which languages your app uses. You can do this in either of two ways:
1. Create the folders named with the language in the metadata folder (i.e. fastlane/metadata/en-US or fastlane/metadata/de-DE)
2. Add the following to your `Deliverfile` `languages(['en-US','de-DE'])`
You can use this either in json within your `Deliverfile` and/or as folders in your metadata folder. _deliver_ will take the union of both language sets from the `Deliverfile` and from the metadata folder and create on single set of languages which will be enabled.
Imagine that you have localized data for the following language codes: ```en-US, de-DE, el, it```
You can set the following in your `Deliverfile`
```ruby-skip-tests
release_notes({
'default' => "Shiny and new",
'de-DE' => "glaenzend und neu"
})
```
Deliver will use "Shiny and new" for en-US, el and it.
It will use "glaenzend und neu" for de-DE.
You can do the same with folders
```
default
keywords.txt
marketing_url.txt
name.txt
privacy_url.txt
support_url.txt
release_notes.txt
en-US
description.txt
de-DE
description.txt
el
description.txt
it
description.txt
```
In this case, default values for keywords, urls, name and release notes are used in all localizations, but each language has a fully localized description
## Uploading screenshots for "iPad Pro (12.9-inch) (3rd generation)"
[Starting March 20, 2019 Apple's App Store](https://developer.apple.com/news/?id=03202019a) requires 12.9-inch iPad Pro (3rd generation) screenshots additionally to the iPad Pro 2nd generation [screenshots](https://help.apple.com/app-store-connect/#/devd274dd925). As fastlane historically uses the screenshot dimensions to determine the "display family" of a screenshot, this poses a problem as both use the same dimensions and are recognized as the same device family.
To solve this a screenshot of a 12.9-inch iPad Pro (3rd generation) must contain either the string `iPad Pro (12.9-inch) (3rd generation)` or `ipadPro129` (Apple's internal naming of the display family for the 3rd generation iPad Pro) in its filename to be assigned the correct display family and to be uploaded to the correct screenshot slot in your app's metadata.
## Automatically create screenshots
If you want to integrate _deliver_ with [_snapshot_](https://docs.fastlane.tools/actions/snapshot/), check out [_fastlane_](https://fastlane.tools)!
## Jenkins integration
Detailed instructions about how to set up _deliver_ and _fastlane_ in `Jenkins` can be found in the [fastlane README](https://docs.fastlane.tools/best-practices/continuous-integration/#jenkins-integration).
## Firewall Issues
_deliver_ uses the iTunes Transporter to upload metadata and binaries. In case you are behind a firewall, you can specify a different transporter protocol using
```no-highlight
DELIVER_ITMSTRANSPORTER_ADDITIONAL_UPLOAD_PARAMETERS="-t DAV" fastlane deliver
```
## HTTP Proxy
iTunes Transporter is a Java application bundled with Xcode. In addition to utilizing the `DELIVER_ITMSTRANSPORTER_ADDITIONAL_UPLOAD_PARAMETERS="-t DAV"`, you need to configure the transporter application to use the proxy independently from the system proxy or any environment proxy settings. You can find the configuration file within Xcode:
**for Xcode11 and later**
```no-highlight
TOOLS_PATH=$( xcode-select -p )
REL_PATH='../SharedFrameworks/ContentDeliveryServices.framework/Versions/A/itms/java/lib/net.properties'
echo "$TOOLS_PATH/$REL_PATH"
```
**for Xcode10 or earlier**
```no-highlight
TOOLS_PATH=$( xcode-select -p )
REL_PATH='../Applications/Application Loader.app/Contents/itms/java/lib/net.properties'
echo "$TOOLS_PATH/$REL_PATH"
```
Add necessary proxy configuration values to the net.properties according to [Java Proxy Configuration](http://docs.oracle.com/javase/8/docs/technotes/guides/net/proxies.html).
As an alternative to editing the properties files, proxy configuration can be specified on the command line directly:
```no-highlight
DELIVER_ITMSTRANSPORTER_ADDITIONAL_UPLOAD_PARAMETERS="-t DAV -Dhttp.proxyHost=myproxy.com -Dhttp.proxyPort=8080"
```
## Limit
App Store Connect has a limit of 150 binary uploads per day.
## Editing the `Deliverfile`
Change syntax highlighting to *Ruby*.
## Provider Short Name
If you are on multiple App Store Connect teams, _deliver_ needs a provider short name to know where to upload your binary. _deliver_ will try to use the long name of the selected team to detect the provider short name. To override the detected value with an explicit one, use the `itc_provider` option.