No release in over 3 years
Uploads specified file to AWS Device Farm project
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies
 Project Readme

aws_device_farm_upload plugin

fastlane Plugin Badge

About aws_device_farm_upload

Uploads a specified file like IPA, APK to AWS Device Farm project.

For example, use to manage app in Device Farm remote access sessions.

Getting Started

  1. Generate IAM user with policy which grants access to below.

    • devicefarm:CreateUpload
    • devicefarm:DeleteUpload
    • devicefarm:GetProject
    • devicefarm:ListUploads

    If a file with the specified name exists in the project, it will be overwritten.

    Because some upload types like ANDROID_APP cannot use devicefarm:UpdateUpload to update, it needs to do the create action after the delete action to update. Therefore, it requires devicefarm:CreateUpload and devicefarm:DeleteUpload permissions instead of devicefarm:UpdateUpload.

  2. Add plugin to fastlane

bundle exec fastlane add_plugin aws_device_farm_upload
  1. Add aws_device_farm_upload action to your lane in Fastfile.
lane :upload_apk_to_device_farm do
  aws_device_farm_upload(
    aws_access_key_id: ENV['AWS_ACCESS_KEY_ID'],
    aws_secret_access_key: ENV['AWS_SECRET_ACCESS_KEY'],
    device_farm_project_arn: ENV['DEVICE_FARM_PROJECT_ARN'],
    file_path: '/home/mataku/app/build/outputs/universal_apk/debug/app-debug-universal.apk',
    file_name: 'android-app-debug.apk',
    file_type: 'ANDROID_APP' # See: https://docs.aws.amazon.com/devicefarm/latest/APIReference/API_CreateUpload.html#API_CreateUpload_RequestSyntax
  )
end

Example

Check out the example Fastfile to see how to use this plugin.

Run tests for this plugin

To run both the tests, and code style validation, run

rake

Issues and Feedback

For any other issues and feedback about this plugin, please submit it to this repository.

Troubleshooting

If you have trouble using plugins, check out the Plugins Troubleshooting guide.

Using fastlane Plugins

For more information about how the fastlane plugin system works, check out the Plugins documentation.

About fastlane

fastlane is the easiest way to automate beta deployments and releases for your iOS and Android apps. To learn more, check out fastlane.tools.