class Fastlane::Actions::AndroidmanifestEditorAction
Public Class Methods
available_options()
click to toggle source
# File lib/fastlane/plugin/androidmanifest_editor/actions/androidmanifest_editor_action.rb, line 28 def self.available_options [ # FastlaneCore::ConfigItem.new(key: :your_option, # env_name: "ANDROIDMANIFEST_EDITOR_YOUR_OPTION", # description: "A description of your option", # optional: false, # type: String) ] end
description()
click to toggle source
# File lib/fastlane/plugin/androidmanifest_editor/actions/androidmanifest_editor_action.rb, line 11 def self.description "edit meta-data in AndroidManifest.xml" end
details()
click to toggle source
# File lib/fastlane/plugin/androidmanifest_editor/actions/androidmanifest_editor_action.rb, line 23 def self.details # Optional: "edit meta-data of application section in AndroidManifest.xml" end
is_supported?(platform)
click to toggle source
# File lib/fastlane/plugin/androidmanifest_editor/actions/androidmanifest_editor_action.rb, line 38 def self.is_supported?(platform) [:android].include?(platform) end
return_value()
click to toggle source
# File lib/fastlane/plugin/androidmanifest_editor/actions/androidmanifest_editor_action.rb, line 19 def self.return_value # If your method provides a return value, you can describe here what it does end
run(params)
click to toggle source
# File lib/fastlane/plugin/androidmanifest_editor/actions/androidmanifest_editor_action.rb, line 7 def self.run(params) UI.message("The androidmanifest_editor plugin is working!") end