class Fastlane::Actions::OptOutCrashReportingAction
Public Class Methods
Source
# File fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb, line 28 def self.category :deprecated end
Source
# File fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb, line 8 def self.description "This will prevent reports from being uploaded when _fastlane_ crashes" end
Source
# File fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb, line 12 def self.details "_fastlane_ doesn't have crash reporting anymore. Feel free to remove `opt_out_crash_reporting` from your Fastfile." end
Source
# File fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb, line 24 def self.example_code nil end
Source
# File fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb, line 20 def self.is_supported?(platform) true end
Source
# File fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb, line 4 def self.run(params) UI.message("fastlane doesn't have crash reporting anymore, feel free to remove `opt_out_crash_reporting` from your Fastfile") end