class Fastlane::Actions::RetrofitCordovaScreenshotsAndroidAction

Public Class Methods

authors() click to toggle source
# File lib/fastlane/plugin/cordova_screenshots/actions/retrofit_cordova_screenshots_android_action.rb, line 23
def self.authors
  ['Jan Piotrowski']
end
available_options() click to toggle source
# File lib/fastlane/plugin/cordova_screenshots/actions/retrofit_cordova_screenshots_android_action.rb, line 36
def self.available_options
  [
  ]
end
description() click to toggle source
# File lib/fastlane/plugin/cordova_screenshots/actions/retrofit_cordova_screenshots_android_action.rb, line 19
def self.description
  'Retrofit test into Android project'
end
details() click to toggle source
# File lib/fastlane/plugin/cordova_screenshots/actions/retrofit_cordova_screenshots_android_action.rb, line 31
def self.details
  # Optional:
  ''
end
is_supported?(platform) click to toggle source
# File lib/fastlane/plugin/cordova_screenshots/actions/retrofit_cordova_screenshots_android_action.rb, line 41
def self.is_supported?(platform)
  # Adjust this if your plugin only works for a particular platform (iOS vs. Android, for example)
  # See: https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Platforms.md
  #
  # [:ios, :mac, :android].include?(platform)
  [:android].include?(platform)
end
return_value() click to toggle source
# File lib/fastlane/plugin/cordova_screenshots/actions/retrofit_cordova_screenshots_android_action.rb, line 27
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/cordova_screenshots/actions/retrofit_cordova_screenshots_android_action.rb, line 6
def self.run(params)
  UI.message("Retrofitting Android UI test from '#{CordovaScreenshots::CORDOVA_SCREENSHOTS_ANDROID_CONFIG_PATH}' into Cordova Android project.")

  package_name = Fastlane::Helper::CordovaScreenshotsHelper.read_package_name_from_android_test
  package_name_path = package_name.gsub('.', '/')

  Fastlane::Helper::CordovaScreenshotsHelper.copy_android_test(package_name_path)
  Fastlane::Helper::CordovaScreenshotsHelper.copy_android_build_extras_gradle
  Fastlane::Helper::CordovaScreenshotsHelper.copy_android_manifest(package_name)

  UI.success("Done. Build your test app (TODO) and then run `fastlane screengrab` to take screenshots.")
end