Class: Fastlane::CrashlyticsProjectParser

Inherits:
Object
  • Object
show all
Defined in:
lib/fastlane/setup/crashlytics_project_parser.rb

Instance Method Summary collapse

Constructor Details

#initialize(config = {}) ⇒ CrashlyticsProjectParser

Returns a new instance of CrashlyticsProjectParser.

Parameters:

  • project_file_path

    path to a .xcodeproj file



6
7
8
9
10
11
12
# File 'lib/fastlane/setup/crashlytics_project_parser.rb', line 6

def initialize(config = {})
  FastlaneCore::Project.detect_projects(config)
  @project = FastlaneCore::Project.new(config, xcodebuild_list_silent: true, xcodebuild_suppress_stderr: true)

  @target_name = @project.default_build_settings(key: 'TARGETNAME')
  @project_file_path = @project.is_workspace ? @project.path.gsub('xcworkspace', 'xcodeproj') : @project.path
end

Instance Method Details

#includes_run_script?(string) ⇒ Boolean

Returns:

  • (Boolean)


43
44
45
46
47
# File 'lib/fastlane/setup/crashlytics_project_parser.rb', line 43

def includes_run_script?(string)
  ['Fabric/run', 'Crashlytics/run', 'Fabric.framework/run', 'Crashlytics.framework/run'].any? do |script_path_fragment|
    string.include?(script_path_fragment)
  end
end

#parseObject



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
# File 'lib/fastlane/setup/crashlytics_project_parser.rb', line 14

def parse
  results = {
    schemes: @project.schemes
  }

  xcode_project = Xcodeproj::Project.open(@project_file_path)
  target = xcode_project.targets.find { |t| t.name == @target_name }

  UI.crash!("Unable to locate a target by the name of #{@target_name}") if target.nil?

  scripts = target.build_phases.select { |t| t.class == Xcodeproj::Project::Object::PBXShellScriptBuildPhase }
  crash_script = scripts.find { |s| includes_run_script?(s.shell_script) }

  UI.user_error!("Unable to find Crashlytics Run Script Build Phase") if crash_script.nil?

  script_array = crash_script.shell_script.split('\n').find { |line| includes_run_script?(line) }.split(' ')
  if script_array.count == 3
    results.merge!({
      # The run script build phase probably refers to Fabric.framework/run, but the submit binary
      # only lives in the Crashlytics.framework, so we'll substitute and try to resolve it that way.
      crashlytics_path: File.dirname(script_array[0].gsub("Fabric.framework", "Crashlytics.framework")),
      api_key: script_array[1],
      build_secret: script_array[2]
    })
  end

  results
end