{"id":15587666,"url":"https://github.com/icyleaf/fastlane-plugin-android_channels","last_synced_at":"2025-04-04T15:23:42.883Z","repository":{"id":56845619,"uuid":"154629345","full_name":"icyleaf/fastlane-plugin-android_channels","owner":"icyleaf","description":"Package unsign apk with channels and sign it","archived":false,"fork":false,"pushed_at":"2018-10-26T07:32:28.000Z","size":19,"stargazers_count":0,"open_issues_count":1,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-10T03:07:03.104Z","etag":null,"topics":["fastlane-android","fastlane-plugin"],"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/icyleaf.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-10-25T07:37:17.000Z","updated_at":"2023-06-21T02:10:36.000Z","dependencies_parsed_at":"2022-09-09T21:11:02.431Z","dependency_job_id":null,"html_url":"https://github.com/icyleaf/fastlane-plugin-android_channels","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/icyleaf%2Ffastlane-plugin-android_channels","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/icyleaf%2Ffastlane-plugin-android_channels/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/icyleaf%2Ffastlane-plugin-android_channels/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/icyleaf%2Ffastlane-plugin-android_channels/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/icyleaf","download_url":"https://codeload.github.com/icyleaf/fastlane-plugin-android_channels/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247199193,"owners_count":20900243,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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-android","fastlane-plugin"],"created_at":"2024-10-02T22:02:48.406Z","updated_at":"2025-04-04T15:23:42.867Z","avatar_url":"https://github.com/icyleaf.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# android_channels plugin\n\n[![fastlane Plugin Badge](https://rawcdn.githack.com/fastlane/fastlane/master/fastlane/assets/plugin-badge.svg)](https://rubygems.org/gems/fastlane-plugin-android_channels)\n\n## Getting Started\n\nThis project is a [_fastlane_](https://github.com/fastlane/fastlane) plugin. To get started with `fastlane-plugin-android_channels`, add it to your project by running:\n\n```bash\nfastlane add_plugin android_channels\n```\n\n## About android_channels\n\nPackage unsign apk with channels and write empty file to META-INF with channel in general way\n\n## Configuration\n\n```\n+-------------------------+-------------------------------------------------+------------------------------------------+-------------------------------------------------+\n|                                                                        android_channels Options                                                                        |\n+-------------------------+-------------------------------------------------+------------------------------------------+-------------------------------------------------+\n| Key                     | Description                                     | Env Var                                  | Default                                         |\n+-------------------------+-------------------------------------------------+------------------------------------------+-------------------------------------------------+\n| apk_file                | The path of apk file                            | ANDROID_CHANNELS_APK_FILE                | builds/output/apk/app-unsigned.apk              |\n| channels                | The key password of keystore                    | ANDROID_CHANNELS_CHANNELS                | []                                              |\n| channel_file            | The path of channel file, accepts json, yaml    | ANDROID_CHANNELS_CHANNEL_FILE            |                                                 |\n|                         | and plain text file (split with space, comma    |                                          |                                                 |\n|                         | and newline)                                    |                                          |                                                 |\n| channel_filename_prefix | The prefix of empty channel file to write to    | ANDROID_CHANNELS_CHANNEL_FILENAME_PREFIX |                                                 |\n|                         | METE-INF folder                                 |                                          |                                                 |\n| channel_filename_suffix | The suffix of empty channel file to write to    | ANDROID_CHANNELS_CHANNEL_FILENAME_SUFFIX |                                                 |\n|                         | METE-INF folder                                 |                                          |                                                 |\n| output_path             | The output path of channel apk files            | ANDROID_CHANNELS_OUTPUT_PATH             | channel_apks                                    |\n| android_sdk_path        | The path of android sdk                         | ANDROID_CHANNELS_ANDROID_SDK_PATH        | /usr/local/share/android-sdk                    |\n| build_tools_version     | The version of build tools (by default, always  | ANDROID_CHANNELS_BUILD_TOOLS_VERSION     |                                                 |\n|                         | use latest version)                             |                                          |                                                 |\n| keystore                | The path of keystore file                       | ANDROID_CHANNELS_KEYSTORE                | release.keystore                                |\n| keystore_password       | The password of keystore                        | ANDROID_CHANNELS_KEYSTORE_PASSWORD       |                                                 |\n| key_alias               | The key alias of keystore                       | ANDROID_CHANNELS_KEY_ALIAS               |                                                 |\n| key_password            | The key password of keystore                    | ANDROID_CHANNELS_KEY_PASSWORD            |                                                 |\n| apksigner_extra_args    | The extra arguments of apksigner command        | ANDROID_CHANNELS_APKSIGNER_EXTRA_ARGS    |                                                 |\n| verify                  | Do or not verify signed apk file                | ANDROID_CHANNELS_VERIFY                  | false                                           |\n| clean                   | Should the signed files to be clean before      | ANDROID_CHANNELS_CLEAN                   | false                                           |\n|                         | signing it?                                     |                                          |                                                 |\n+-------------------------+-------------------------------------------------+------------------------------------------+-------------------------------------------------+\n* = default value is dependent on the user's system\n```\n\nHere has some example [channel files](examples/).\n\n## Return value\n\n```\n+-------------------------------+\n| android_channels Return Value |\n+-------------------------------+\n| The output of signed apk path |\n+-------------------------------+\n```\n\n## Example\n\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\n**Note to author:** Please set up a sample project to make it easy for users to explore what your plugin does. Provide everything that is necessary to try out the plugin in this project (including a sample Xcode/Android project if necessary)\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%2Ficyleaf%2Ffastlane-plugin-android_channels","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ficyleaf%2Ffastlane-plugin-android_channels","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ficyleaf%2Ffastlane-plugin-android_channels/lists"}