{"id":16310193,"url":"https://github.com/mataku/fastlane-plugin-aws_device_farm_upload","last_synced_at":"2026-02-21T01:01:38.019Z","repository":{"id":42830968,"uuid":"328150997","full_name":"mataku/fastlane-plugin-aws_device_farm_upload","owner":"mataku","description":"A fastlane plugin to upload a specified file like IPA, APK to AWS Device Farm project.","archived":false,"fork":false,"pushed_at":"2024-09-10T07:36:19.000Z","size":41,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"develop","last_synced_at":"2025-11-30T19:03:56.579Z","etag":null,"topics":["fastlane-plugins"],"latest_commit_sha":null,"homepage":"","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mataku.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-01-09T12:33:19.000Z","updated_at":"2022-03-26T18:15:51.000Z","dependencies_parsed_at":"2024-10-28T14:34:15.993Z","dependency_job_id":"c5d94e2e-ea8c-4a4e-a28a-4f4bed108bf4","html_url":"https://github.com/mataku/fastlane-plugin-aws_device_farm_upload","commit_stats":{"total_commits":22,"total_committers":2,"mean_commits":11.0,"dds":"0.18181818181818177","last_synced_commit":"159c8235ed5277dd5c7553af44ec074fdbe633fa"},"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/mataku/fastlane-plugin-aws_device_farm_upload","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mataku%2Ffastlane-plugin-aws_device_farm_upload","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mataku%2Ffastlane-plugin-aws_device_farm_upload/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mataku%2Ffastlane-plugin-aws_device_farm_upload/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mataku%2Ffastlane-plugin-aws_device_farm_upload/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mataku","download_url":"https://codeload.github.com/mataku/fastlane-plugin-aws_device_farm_upload/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mataku%2Ffastlane-plugin-aws_device_farm_upload/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29669856,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-21T00:11:43.526Z","status":"ssl_error","status_checked_at":"2026-02-20T23:52:33.807Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["fastlane-plugins"],"created_at":"2024-10-10T21:25:23.256Z","updated_at":"2026-02-21T01:01:37.920Z","avatar_url":"https://github.com/mataku.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# aws_device_farm_upload plugin\n\n[![fastlane Plugin Badge](https://rawcdn.githack.com/fastlane/fastlane/master/fastlane/assets/plugin-badge.svg)](https://rubygems.org/gems/fastlane-plugin-aws_device_farm_upload)\n\n## About aws_device_farm_upload\n\nUploads a specified file like IPA, APK to AWS Device Farm project.\n\nFor example, use to manage app in Device Farm remote access sessions.\n\n## Getting Started\n\n1. Generate IAM user with policy which grants access to below.\n\n    - devicefarm:CreateUpload\n    - devicefarm:DeleteUpload\n    - devicefarm:GetProject\n    - devicefarm:ListUploads\n\n\n    If a file with the specified name exists in the project, it will be overwritten.\n\n    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`.\n\n2. Add plugin to fastlane\n\n```shell\nbundle exec fastlane add_plugin aws_device_farm_upload\n```\n\n3. Add `aws_device_farm_upload` action to your lane in `Fastfile`.\n\n```ruby\nlane :upload_apk_to_device_farm do\n  aws_device_farm_upload(\n    aws_access_key_id: ENV['AWS_ACCESS_KEY_ID'],\n    aws_secret_access_key: ENV['AWS_SECRET_ACCESS_KEY'],\n    device_farm_project_arn: ENV['DEVICE_FARM_PROJECT_ARN'],\n    file_path: '/home/mataku/app/build/outputs/universal_apk/debug/app-debug-universal.apk',\n    file_name: 'android-app-debug.apk',\n    file_type: 'ANDROID_APP' # See: https://docs.aws.amazon.com/devicefarm/latest/APIReference/API_CreateUpload.html#API_CreateUpload_RequestSyntax\n  )\nend\n```\n\n## Example\n\nCheck out the [example `Fastfile`](fastlane/Fastfile) to see how to use this plugin.\n\n## Run tests for this plugin\n\nTo run both the tests, and code style validation, run\n\n```\nrake\n```\n\n## Issues and Feedback\n\nFor any other issues and feedback about this plugin, please submit it to this repository.\n\n## Troubleshooting\n\nIf you have trouble using plugins, check out the [Plugins Troubleshooting](https://docs.fastlane.tools/plugins/plugins-troubleshooting/) guide.\n\n## Using _fastlane_ Plugins\n\nFor more information about how the `fastlane` plugin system works, check out the [Plugins documentation](https://docs.fastlane.tools/plugins/create-plugin/).\n\n## About _fastlane_\n\n_fastlane_ is the easiest way to automate beta deployments and releases for your iOS and Android apps. To learn more, check out [fastlane.tools](https://fastlane.tools).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmataku%2Ffastlane-plugin-aws_device_farm_upload","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmataku%2Ffastlane-plugin-aws_device_farm_upload","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmataku%2Ffastlane-plugin-aws_device_farm_upload/lists"}