fastlane/lib/fastlane/actions/docs/produce.md in fastlane-2.61.0.beta.20171009010003 vs fastlane/lib/fastlane/actions/docs/produce.md in fastlane-2.61.0
- old
+ new
@@ -183,39 +183,39 @@
app_identifier: 'com.krausefx.app',
app_name: 'MyApp',
language: 'English',
app_version: '1.0',
sku: '123',
- team_name: 'SunApps GmbH' # only necessary when in multiple teams
+ team_name: 'SunApps GmbH', # only necessary when in multiple teams
# Optional
# App services can be enabled during app creation
enable_services: {
- app_group: "on" # Valid values: "on", "off"
- apple_pay: "on" # Valid values: "on", "off"
- associated_domains: "on" # Valid values: "on", "off"
- data_protection: "complete" # Valid values: "complete", "unlessopen", "untilfirstauth"
- game_center: "on" # Valid values: "on", "off"
- health_kit: "on" # Valid values: "on", "off"
- home_kit: "on" # Valid values: "on", "off"
- wireless_accessory: "on" # Valid values: "on", "off"
- icloud: "cloudkit" # Valid values: "legacy", "cloudkit"
- in_app_purchase: "on" # Valid values: "on", "off"
- inter_app_audio: "on" # Valid values: "on", "off"
- passbook: "on" # Valid values: "on", "off"
- push_notification: "on" # Valid values: "on", "off"
- siri_kit: "on" # Valid values: "on", "off"
+ app_group: "on", # Valid values: "on", "off"
+ apple_pay: "on", # Valid values: "on", "off"
+ associated_domains: "on", # Valid values: "on", "off"
+ data_protection: "complete", # Valid values: "complete", "unlessopen", "untilfirstauth",
+ game_center: "on", # Valid values: "on", "off"
+ health_kit: "on", # Valid values: "on", "off"
+ home_kit: "on", # Valid values: "on", "off"
+ wireless_accessory: "on", # Valid values: "on", "off"
+ icloud: "cloudkit", # Valid values: "legacy", "cloudkit"
+ in_app_purchase: "on", # Valid values: "on", "off"
+ inter_app_audio: "on", # Valid values: "on", "off"
+ passbook: "on", # Valid values: "on", "off"
+ push_notification: "on", # Valid values: "on", "off"
+ siri_kit: "on", # Valid values: "on", "off"
vpn_configuration: "on" # Valid values: "on", "off"
}
)
deliver
end
```
To use the newly generated app in _deliver_, you need to add this line to your `Deliverfile`:
-```ruby
+```ruby-skip-tests
apple_id ENV['PRODUCE_APPLE_ID']
```
This will tell _deliver_, which `App ID` to use, since the app is not yet available in the App Store.