{"id":14530174,"url":"https://github.com/d4n3436/revanced-patches-android5","last_synced_at":"2025-09-02T01:31:40.295Z","repository":{"id":154083257,"uuid":"631718451","full_name":"d4n3436/revanced-patches-android5","owner":"d4n3436","description":"YouTube ReVanced for Android 5","archived":false,"fork":true,"pushed_at":"2024-06-20T19:58:28.000Z","size":7870,"stargazers_count":67,"open_issues_count":3,"forks_count":3,"subscribers_count":5,"default_branch":"revanced-extended","last_synced_at":"2024-09-06T01:12:51.347Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"kitadai31/revanced-patches-android6-7","license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/d4n3436.png","metadata":{"files":{"readme":"README-template.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}},"created_at":"2023-04-23T22:19:43.000Z","updated_at":"2024-08-06T19:39:13.000Z","dependencies_parsed_at":"2023-09-24T19:59:40.721Z","dependency_job_id":null,"html_url":"https://github.com/d4n3436/revanced-patches-android5","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/d4n3436%2Frevanced-patches-android5","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/d4n3436%2Frevanced-patches-android5/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/d4n3436%2Frevanced-patches-android5/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/d4n3436%2Frevanced-patches-android5/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/d4n3436","download_url":"https://codeload.github.com/d4n3436/revanced-patches-android5/tar.gz/refs/heads/revanced-extended","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":231732276,"owners_count":18418178,"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":[],"created_at":"2024-09-05T00:01:05.462Z","updated_at":"2024-12-29T11:30:39.243Z","avatar_url":"https://github.com/d4n3436.png","language":"Kotlin","funding_links":[],"categories":["🩹 Patches"],"sub_categories":[],"readme":"## 🧩 Patches\n\nThe official Patch bundle provided by ReVanced and the community.\n\n\u003e Looking for the JSON variant of this? [Click here](patches.json).\n\n{{ table }}\n\n## 📝 JSON Format\n\nThis section explains the JSON format for the [patches.json](patches.json) file.\n\nThe file contains an array of objects, each object representing a patch. The object contains the following properties:\n\n| key                           | description                                                                                                                                                                           |\n|-------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `name`                        | The name of the patch.                                                                                                                                                                |\n| `description`                 | The description of the patch.                                                                                                                                                         |\n| `version`                     | The version of the patch.                                                                                                                                                             |\n| `excluded`                    | Whether the patch is excluded by default. If `true`, the patch must never be included by default.                                                                                     |\n| `options`                     | An array of options for this patch.                                                                                                                                                   |\n| `options.key`                 | The key of the option.                                                                                                                                                                |\n| `options.title`               | The title of the option.                                                                                                                                                              |\n| `options.description`         | The description of the option.                                                                                                                                                        |\n| `options.required`            | Whether the option is required.                                                                                                                                                       |\n| `options.choices?`            | An array of choices of the option. This may be `null` if this option has no choices. The element type of this array may be any type. It can be a `String`, `Int` or something else.   |\n| `dependencies`                | An array of dependencies, which are patch names.                                                                                                                                      |\n| `compatiblePackages`          | An array of packages compatible with this patch.                                                                                                                                      |\n| `compatiblePackages.name`     | The name of the package.                                                                                                                                                              |\n| `compatiblePackages.versions` | An array of versions of the package compatible with this patch. If empty, all versions are seemingly compatible.                                                                      |\n\nExample:\n\n```json\n[\n  {\n    \"name\": \"remember-video-quality\",\n    \"description\": \"Adds the ability to remember the video quality you chose in the video quality flyout.\",\n    \"version\": \"0.0.1\",\n    \"excluded\": false,\n    \"options\": [],\n    \"dependencies\": [\n      \"integrations\",\n      \"video-id-hook\"\n    ],\n    \"compatiblePackages\": [\n      {\n        \"name\": \"com.google.android.youtube\",\n        \"versions\": [\n          \"17.22.36\",\n          \"17.24.35\",\n          \"17.26.35\",\n          \"17.27.39\",\n          \"17.28.34\",\n          \"17.29.34\",\n          \"17.32.35\",\n          \"17.33.42\"\n        ]\n      }\n    ]\n  },\n  {\n    \"name\": \"theme\",\n    \"description\": \"Enables a custom theme.\",\n    \"version\": \"0.0.1\",\n    \"excluded\": false,\n    \"deprecated\": false,\n    \"options\": [\n      {\n        \"key\": \"theme\",\n        \"title\": \"Theme\",\n        \"description\": \"Select a theme.\",\n        \"required\": true,\n        \"choices\": [\n          \"Amoled\"\n        ]\n      }\n    ],\n    \"dependencies\": [\n      \"locale-config-fix\"\n    ],\n    \"compatiblePackages\": [\n      {\n        \"name\": \"com.google.android.youtube\",\n        \"versions\": []\n      }\n    ]\n  },\n  {\n    \"name\": \"custom-branding\",\n    \"description\": \"Changes the YouTube launcher icon and name to your choice (defaults to ReVanced).\",\n    \"version\": \"0.0.1\",\n    \"excluded\": false,\n    \"deprecated\": false,\n    \"options\": [\n      {\n        \"key\": \"appName\",\n        \"title\": \"Application Name\",\n        \"description\": \"The name of the application it will show on your home screen.\",\n        \"required\": true,\n        \"choices\": null\n      },\n      {\n        \"key\": \"appIconPath\",\n        \"title\": \"Application Icon Path\",\n        \"description\": \"A path to the icon of the application.\",\n        \"required\": false,\n        \"choices\": null\n      }\n    ],\n    \"dependencies\": [\n      \"locale-config-fix\"\n    ],\n    \"compatiblePackages\": [\n      {\n        \"name\": \"com.google.android.youtube\",\n        \"versions\": []\n      }\n    ]\n  }\n]\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fd4n3436%2Frevanced-patches-android5","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fd4n3436%2Frevanced-patches-android5","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fd4n3436%2Frevanced-patches-android5/lists"}