{"id":15022866,"url":"https://github.com/andreshj87/fastlane-plugin-last_fabric_version_code","last_synced_at":"2026-01-19T23:06:01.750Z","repository":{"id":56845828,"uuid":"147186608","full_name":"andreshj87/fastlane-plugin-last_fabric_version_code","owner":"andreshj87","description":"Fastlane plugin to get the last Fabric version code for your Android app","archived":false,"fork":false,"pushed_at":"2018-11-06T20:04:31.000Z","size":11,"stargazers_count":1,"open_issues_count":1,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-07T17:23:15.677Z","etag":null,"topics":["android","fabric","fastlane","versioncode","versioning"],"latest_commit_sha":null,"homepage":null,"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/andreshj87.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}},"created_at":"2018-09-03T10:04:30.000Z","updated_at":"2018-11-06T20:41:07.000Z","dependencies_parsed_at":"2022-09-17T21:44:18.651Z","dependency_job_id":null,"html_url":"https://github.com/andreshj87/fastlane-plugin-last_fabric_version_code","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/andreshj87/fastlane-plugin-last_fabric_version_code","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andreshj87%2Ffastlane-plugin-last_fabric_version_code","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andreshj87%2Ffastlane-plugin-last_fabric_version_code/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andreshj87%2Ffastlane-plugin-last_fabric_version_code/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andreshj87%2Ffastlane-plugin-last_fabric_version_code/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/andreshj87","download_url":"https://codeload.github.com/andreshj87/fastlane-plugin-last_fabric_version_code/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andreshj87%2Ffastlane-plugin-last_fabric_version_code/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28588971,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-19T20:45:59.482Z","status":"ssl_error","status_checked_at":"2026-01-19T20:45:41.500Z","response_time":67,"last_error":"SSL_read: 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":["android","fabric","fastlane","versioncode","versioning"],"created_at":"2024-09-24T19:58:28.262Z","updated_at":"2026-01-19T23:06:01.733Z","avatar_url":"https://github.com/andreshj87.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# last_fabric_version_code plugin\n\n[![fastlane Plugin Badge](https://rawcdn.githack.com/fastlane/fastlane/master/fastlane/assets/plugin-badge.svg)](https://rubygems.org/gems/fastlane-plugin-last_fabric_version_code)\n\n## Getting Started\n\nThis project is a [_fastlane_](https://github.com/fastlane/fastlane) plugin. To get started with `fastlane-plugin-last_fabric_version_code`, add it to your project by running:\n\n```bash\nfastlane add_plugin last_fabric_version_code\n```\n\n## About last_fabric_version_code\n\nGet the last Fabric version code for your Android app\nThis is specially useful if you want to auto-increment the version code for your beta builds or something.\n\n## Example\n\nCheck out the [example `Fastfile`](fastlane/Fastfile) to see how to use this plugin. Try it by cloning the repo, running `fastlane install_plugins` and `bundle exec fastlane test`.\n\nIf you want to get the auto-increment version code feature in your Android app project, you can set up a new lane similar to this:\n```ruby\nlane :last_version do\n  last_version_code = last_fabric_version_code(username: 'your@email.com', password: 'y0urPassW0rd', app_package: 'com.android.example.app')\n  gradle(\n      task: 'assemble',\n      build_type: 'developDebug',\n      properties: { 'newVersionCode' =\u003e last_version_code }\n  )\n  # Deploy to Fabric\nend\n```\n\nAnd then, read the injected version code in your app's build.gradle like this:\n\n```groovy\nandroid {\n  defaultConfig {\n    versionCode project.hasProperty('newVersionCode') ? project.property('newVersionCode') as int : 1\n  }\n}\n```\n\n## Run tests for this plugin\n\nTo run both the tests, and code style validation, run\n\n```\nrake\n```\n\nTo automatically fix many of the styling issues, use\n```\nrubocop -a\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%2Fandreshj87%2Ffastlane-plugin-last_fabric_version_code","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fandreshj87%2Ffastlane-plugin-last_fabric_version_code","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandreshj87%2Ffastlane-plugin-last_fabric_version_code/lists"}