Class: Fastlane::Actions::UploadToPlayStoreInternalAppSharingAction
- Inherits:
-
Fastlane::Action
- Object
- Fastlane::Action
- Fastlane::Actions::UploadToPlayStoreInternalAppSharingAction
show all
- Defined in:
- fastlane/lib/fastlane/actions/upload_to_play_store_internal_app_sharing.rb
Constant Summary
Fastlane::Action::AVAILABLE_CATEGORIES, Fastlane::Action::RETURN_TYPES
Class Method Summary
collapse
action_name, author, deprecated_notes, lane_context, method_missing, other_action, output, return_type, sample_return_value, shell_out_should_use_bundle_exec?, step_text
Class Method Details
.authors ⇒ Object
61
62
63
|
# File 'fastlane/lib/fastlane/actions/upload_to_play_store_internal_app_sharing.rb', line 61
def self.authors
["andrewhavens"]
end
|
.available_options ⇒ Object
47
48
49
50
51
52
53
54
55
|
# File 'fastlane/lib/fastlane/actions/upload_to_play_store_internal_app_sharing.rb', line 47
def self.available_options
require 'supply'
require 'supply/options'
options = Supply::Options.available_options.clone
options_to_keep = [:package_name, :apk, :apk_paths, :aab, :aab_paths, :json_key, :json_key_data, :root_url, :timeout]
options.delete_if { |option| options_to_keep.include?(option.key) == false }
end
|
.category ⇒ Object
73
74
75
|
# File 'fastlane/lib/fastlane/actions/upload_to_play_store_internal_app_sharing.rb', line 73
def self.category
:production
end
|
.description ⇒ Object
39
40
41
|
# File 'fastlane/lib/fastlane/actions/upload_to_play_store_internal_app_sharing.rb', line 39
def self.description
"Upload binaries to Google Play Internal App Sharing (via _supply_)"
end
|
.details ⇒ Object
43
44
45
|
# File 'fastlane/lib/fastlane/actions/upload_to_play_store_internal_app_sharing.rb', line 43
def self.details
"More information: https://docs.fastlane.tools/actions/upload_to_play_store_internal_app_sharing/"
end
|
.example_code ⇒ Object
69
70
71
|
# File 'fastlane/lib/fastlane/actions/upload_to_play_store_internal_app_sharing.rb', line 69
def self.example_code
["upload_to_play_store_internal_app_sharing"]
end
|
.is_supported?(platform) ⇒ Boolean
65
66
67
|
# File 'fastlane/lib/fastlane/actions/upload_to_play_store_internal_app_sharing.rb', line 65
def self.is_supported?(platform)
platform == :android
end
|
.return_value ⇒ Object
57
58
59
|
# File 'fastlane/lib/fastlane/actions/upload_to_play_store_internal_app_sharing.rb', line 57
def self.return_value
"Returns a string containing the download URL for the uploaded APK/AAB (or array of strings if multiple were uploaded)."
end
|