module ErrorMessage
Constants
- APP_NOT_ONBOARDED_ERROR
- APP_NOT_PUBLISHED
- GET_RELEASE_TIMEOUT
- INVALID_APP_ID
- INVALID_EMAIL_ADDRESS
- INVALID_PATH
- INVALID_PROJECT
- INVALID_RELEASE_NOTES
- INVALID_TESTERS
- MISSING_APP_ID
- MISSING_CREDENTIALS
- NO_APP_WITH_GIVEN_BUNDLE_ID_IN_PLAY_ACCOUNT
- PARSE_SERVICE_CREDENTIALS_ERROR
- PLAY_ACCOUNT_NOT_LINKED
- PLAY_IAS_TERMS_NOT_ACCEPTED
- REFRESH_TOKEN_ERROR
- SERVICE_CREDENTIALS_ERROR
- SERVICE_CREDENTIALS_NOT_FOUND
- TESTER_LIMIT_VIOLATION
- UPLOAD_RELEASE_NOTES_ERROR
- UPLOAD_TESTERS_ERROR
Public Class Methods
aab_upload_error(aab_state)
click to toggle source
# File lib/fastlane/plugin/firebase_app_distribution/helper/firebase_app_distribution_error_message.rb, line 24 def self.aab_upload_error(aab_state) "Failed to process the AAB: #{aab_state}" end
binary_not_found(binary_type)
click to toggle source
# File lib/fastlane/plugin/firebase_app_distribution/helper/firebase_app_distribution_error_message.rb, line 28 def self.binary_not_found(binary_type) "Could not find the #{binary_type}. Make sure you set the #{binary_type} path parameter to point to your #{binary_type}" end
binary_processing_error(binary_type)
click to toggle source
# File lib/fastlane/plugin/firebase_app_distribution/helper/firebase_app_distribution_error_message.rb, line 40 def self.binary_processing_error(binary_type) "App Distribution failed to process the #{binary_type}" end
parse_binary_metadata_error(binary_type)
click to toggle source
# File lib/fastlane/plugin/firebase_app_distribution/helper/firebase_app_distribution_error_message.rb, line 32 def self.parse_binary_metadata_error(binary_type) "Failed to extract #{binary_type} metadata from the #{binary_type} path" end
upload_binary_error(binary_type)
click to toggle source
# File lib/fastlane/plugin/firebase_app_distribution/helper/firebase_app_distribution_error_message.rb, line 36 def self.upload_binary_error(binary_type) "App Distribution halted because it had a problem uploading the #{binary_type}" end