Class: Fastlane::Actions::UpdateAppIdentifierAction
Constant Summary
Fastlane::Action::AVAILABLE_CATEGORIES
Class Method Summary
collapse
action_name, author, lane_context, method_missing, other_action, output, return_value, sample_return_value, sh, step_text
Class Method Details
.authors ⇒ Object
89
90
91
|
# File 'lib/fastlane/actions/update_app_identifier.rb', line 89
def self.authors
['squarefrog', 'tobiasstrebitzer']
end
|
.available_options ⇒ Object
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
# File 'lib/fastlane/actions/update_app_identifier.rb', line 66
def self.available_options
[
FastlaneCore::ConfigItem.new(key: :xcodeproj,
env_name: "FL_UPDATE_APP_IDENTIFIER_PROJECT_PATH",
description: "Path to your Xcode project",
default_value: Dir['*.xcodeproj'].first,
verify_block: proc do |value|
UI.user_error!("Please pass the path to the project, not the workspace") unless value.end_with?(".xcodeproj")
UI.user_error!("Could not find Xcode project") unless File.exist?(value)
end),
FastlaneCore::ConfigItem.new(key: :plist_path,
env_name: "FL_UPDATE_APP_IDENTIFIER_PLIST_PATH",
description: "Path to info plist, relative to your Xcode project",
verify_block: proc do |value|
UI.user_error!("Invalid plist file") unless value[-6..-1].casecmp(".plist").zero?
end),
FastlaneCore::ConfigItem.new(key: :app_identifier,
env_name: 'FL_UPDATE_APP_IDENTIFIER',
description: 'The app Identifier you want to set',
default_value: ENV['PRODUCE_APP_IDENTIFIER'] || CredentialsManager::AppfileConfig.try_fetch_value(:app_identifier))
]
end
|
.category ⇒ Object
103
104
105
|
# File 'lib/fastlane/actions/update_app_identifier.rb', line 103
def self.category
:project
end
|
.description ⇒ Object
58
59
60
|
# File 'lib/fastlane/actions/update_app_identifier.rb', line 58
def self.description
"Update the project's bundle identifier"
end
|
.details ⇒ Object
62
63
64
|
# File 'lib/fastlane/actions/update_app_identifier.rb', line 62
def self.details
"Update an app identifier by either setting `CFBundleIdentifier` or `PRODUCT_BUNDLE_IDENTIFIER`, depending on which is already in use."
end
|
.example_code ⇒ Object
93
94
95
96
97
98
99
100
101
|
# File 'lib/fastlane/actions/update_app_identifier.rb', line 93
def self.example_code
[
'update_app_identifier(
xcodeproj: "Example.xcodeproj", # Optional path to xcodeproj, will use the first .xcodeproj if not set
plist_path: "Example/Info.plist", # Path to info plist file, relative to xcodeproj
app_identifier: "com.test.example" # The App Identifier
)'
]
end
|
.is_supported?(platform) ⇒ Boolean
54
55
56
|
# File 'lib/fastlane/actions/update_app_identifier.rb', line 54
def self.is_supported?(platform)
[:ios].include?(platform)
end
|
.run(params) ⇒ Object
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# File 'lib/fastlane/actions/update_app_identifier.rb', line 4
def self.run(params)
require 'plist'
require 'xcodeproj'
info_plist_key = 'INFOPLIST_FILE'
identifier_key = 'PRODUCT_BUNDLE_IDENTIFIER'
info_plist_path = File.join(params[:xcodeproj], '..', params[:plist_path])
UI.user_error!("Couldn't find info plist file at path '#{params[:plist_path]}'") unless File.exist?(info_plist_path)
plist = Plist.parse_xml(info_plist_path)
if plist['CFBundleIdentifier'] == "$(#{identifier_key})"
project_path = params[:xcodeproj]
project = Xcodeproj::Project.open(project_path)
configs = project.objects.select { |obj| obj.isa == 'XCBuildConfiguration' && !obj.build_settings[identifier_key].nil? }
UI.user_error!("Info plist uses $(#{identifier_key}), but xcodeproj does not") unless configs.count > 0
configs = configs.select { |obj| obj.build_settings[info_plist_key] == params[:plist_path] }
UI.user_error!("Xcodeproj doesn't have configuration with info plist #{params[:plist_path]}.") unless configs.count > 0
configs.each do |c|
c.build_settings[identifier_key] = params[:app_identifier]
end
project.save
UI.success("Updated #{params[:xcodeproj]} 💾.")
else
plist['CFBundleIdentifier'] = params[:app_identifier]
plist_string = Plist::Emit.dump(plist)
File.write(info_plist_path, plist_string)
UI.success("Updated #{params[:plist_path]} 💾.")
end
end
|