If specified, this will use the given default language, whenever you only pass one value. Must be on the top of the file.
The email address of your Apple ID account. If you do not specify one, you will be asked for one when you run deliver
.
The bundle identifier (e.g. com.krausefx.app), if not passed, the one inside the ipa
file will be used.
The Apple ID of the app (not your email address), which can be found on iTunesConnect. This will automatically be fetched based on the app_identifer, if the app is already publicly available in the US App Store.
The app version you want to submit. Is used to create a new version on iTunesConnect. This will be fetched from the ipa
file, if given.
A path to a signed ipa file, which will be uploaded. If you don't provide this value, only app metadata will be uploaded. After the upload was successful, it will wait until iTunesConnect processing is finished and submit the update.
A path to a signed ipa file, which will be uploaded and used for Apple TestFlight. After the upload was successful, it will wait until iTunesConnect processing is finished and submit the update to the testers. You have to add --beta
to your deliver
call to use beta_ipa
instead of ipa
.
The description of the app
The title of the app
The changelog (What's new?) of the latest version
These URLs are shown in the AppStore
An array of keywords
keywords({
"en-US" => ["Keyword1", "Keyword2"]
})
A path to a folder containing subfolders for each language. This will automatically detect the device type based on the image resolution.
If set to true
, no PDF report will be generated before the actual deployment. You can also pass --force
when calling deliver
.
Pass the price tier as number. This will be active from the current day.
price_tier 0
A path to a new app icon, which must be exactly 1024x1024px
app_icon './AppIcon.png'
The up to date copyright information.
copyright "#{Time.now.year} Felix Krause"
The english name of the category you want to set (e.g. Business
, Books
)
The english name of the secondary category you want to set
Should the app be released to all users once Apple approves it? If set to no, you'll have to manually release the update once it got approved.
Contact information for the app review team. Available options: first_name
, last_name
, phone_number
, email_address
, demo_user
, demo_password
, notes
. Check out the example.
app_review_information({
first_name: "Felix",
last_name: "Krause",
phone_number: "123123",
email_address: "[email protected]",
demo_user: "demoUser",
demo_password: "demoPass",
notes: "such notes, very text"
})
You can set the app age ratings using deliver
. You'll have to create and store a JSON
configuration file. Copy the template to your project folder and pass the path to the JSON
file using the ratings_config_path
option.
The comment
in the JSON
file is just for your convenience, it will not be used by deliver
. You can now replace the level
values to have the value 1
for mild
and 2
for intense
.
The boolean
values on the bottom can only have the value 0
or 1
.
should 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. Here is a screenshot of the available options: iTunesConnect Screenshot
submit_further_information({
export_compliance: {
encryption_updated: false,
cryptography_enabled: false,
is_exempt: false
},
third_party_content: {
contains_third_party_content: false,
has_rights: false
},
advertising_identifier: false
})
The latest commands can always be found inside deliverer.rb in the ValKey
module.
config_json_folder './deliver'
screenshots_path "./screenshots"
title({
"en-US" => "Your App Name"
})
# changelog({
# "en-US" => "iPhone 6 (Plus) Support"
# })
copyright "#{Time.now.year} Felix Krause"
automatic_release false
app_review_information({
first_name: "Felix",
last_name: "Krause",
phone_number: "123123",
email_address: "[email protected]",
demo_user: "demoUser",
demo_password: "demoPass",
notes: "such notes, very text"
})
primary_category "Business"
secondary_category "Books"
ratings_config_path "~/Downloads/config.json"
price_tier 5
ipa do
system("cd ..; ipa build") # build your project using Shenzhen
"../fastlane.ipa" # Tell 'deliver' where it can find the finished ipa file
end
beta_ipa do
system("cd ..; ipa build") # build your project using Shenzhen
"../fastlane.ipa" # Tell 'deliver' where it can find the finished ipa file
end
success do
system("say 'Successfully submitted a new version.'")
end