February 2018
Intermediate to advanced
346 pages
9h 56m
English
Let’s go back to our Fastfile once again and integrate precheck into it. In our case, we don't need this for our beta lane, and so we will add this action to our lane :release that will allow us to precheck prior to sending our app for review. Add our precheck action above the produce action:
...
lane :release do
# by default deliver will call precheck and warn you of any problems
# if you want precheck to halt submitting to app review, you can pass
# precheck_default_rule_level: :error
deliver(precheck_default_rule_level: :error)
produce( username: 'dktz@mac.com', app_identifier: 'com.doronkatz.firefox', app_name: 'Firefox for iOS', language: 'English', app_version: '1.0', team_name: 'Doron Katz' # only necessary when ...Read now
Unlock full access