Class: Fastlane::Actions::CreateAppOnlineAction
Constant Summary
Fastlane::Action::AVAILABLE_CATEGORIES, Fastlane::Action::RETURN_TYPES
Class Method Summary
collapse
action_name, authors, deprecated_notes, lane_context, method_missing, other_action, return_type, return_value, sample_return_value, shell_out_should_use_bundle_exec?, step_text
Class Method Details
.author ⇒ Object
47
48
49
|
# File 'fastlane/lib/fastlane/actions/create_app_online.rb', line 47
def self.author
"KrauseFx"
end
|
.available_options ⇒ Object
36
37
38
39
|
# File 'fastlane/lib/fastlane/actions/create_app_online.rb', line 36
def self.available_options
require 'produce'
Produce::Options.available_options
end
|
.category ⇒ Object
70
71
72
|
# File 'fastlane/lib/fastlane/actions/create_app_online.rb', line 70
def self.category
:app_store_connect
end
|
.description ⇒ Object
24
25
26
|
# File 'fastlane/lib/fastlane/actions/create_app_online.rb', line 24
def self.description
"Creates the given application on iTC and the Dev Portal (via _produce_)"
end
|
.details ⇒ Object
28
29
30
31
32
33
34
|
# File 'fastlane/lib/fastlane/actions/create_app_online.rb', line 28
def self.details
[
"Create new apps on App Store Connect and Apple Developer Portal via _produce_.",
"If the app already exists, `create_app_online` will not do anything.",
"For more information about _produce_, visit its documentation page: [https://docs.fastlane.tools/actions/produce/](https://docs.fastlane.tools/actions/produce/)."
].join("\n")
end
|
.example_code ⇒ Object
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
# File 'fastlane/lib/fastlane/actions/create_app_online.rb', line 55
def self.example_code
[
'create_app_online(
username: "[email protected]",
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.
)',
'produce # alias for "create_app_online"'
]
end
|
.is_supported?(platform) ⇒ Boolean
51
52
53
|
# File 'fastlane/lib/fastlane/actions/create_app_online.rb', line 51
def self.is_supported?(platform)
platform == :ios
end
|
.output ⇒ Object
41
42
43
44
45
|
# File 'fastlane/lib/fastlane/actions/create_app_online.rb', line 41
def self.output
[
['PRODUCE_APPLE_ID', 'The Apple ID of the newly created app. You probably need it for `deliver`']
]
end
|