{"id":24582819,"url":"https://github.com/jaredcat/apk-cloner","last_synced_at":"2026-02-16T19:02:53.204Z","repository":{"id":273144706,"uuid":"917594781","full_name":"jaredcat/apk-cloner","owner":"jaredcat","description":null,"archived":false,"fork":false,"pushed_at":"2025-01-19T00:30:38.000Z","size":6,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-13T00:51:46.156Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jaredcat.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2025-01-16T09:36:07.000Z","updated_at":"2026-01-09T23:37:31.000Z","dependencies_parsed_at":"2025-01-19T01:32:27.803Z","dependency_job_id":null,"html_url":"https://github.com/jaredcat/apk-cloner","commit_stats":null,"previous_names":["jaredcat/apk-cloner"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jaredcat/apk-cloner","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaredcat%2Fapk-cloner","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaredcat%2Fapk-cloner/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaredcat%2Fapk-cloner/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaredcat%2Fapk-cloner/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jaredcat","download_url":"https://codeload.github.com/jaredcat/apk-cloner/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaredcat%2Fapk-cloner/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29515504,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-16T18:37:19.720Z","status":"ssl_error","status_checked_at":"2026-02-16T18:36:46.920Z","response_time":115,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":[],"created_at":"2025-01-24T03:58:37.966Z","updated_at":"2026-02-16T19:02:53.165Z","avatar_url":"https://github.com/jaredcat.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# apk-cloner\n\nUtilizes [APKEditor](https://github.com/REAndroid/APKEditor) to clone Android APK files with unique package names and optional ReVanced patching support.\n\n## Features\n\n- Clone APK/APKM files with multiple package name suffixes\n- Automatically downloads the latest APKEditor from GitHub\n- Automatically handles package name changes in AndroidManifest.xml\n- Updates app name to include suffix for easy identification\n- Preserves original package permissions and component paths\n- Supports ReVanced patching for compatible apps\n  - Auto-updates ReVanced tools to latest versions\n  - Applies all available app-specific patches\n- Handles zipalign and APK signing\n- Cleans up temporary files automatically\n- Organizes all output files in a dedicated directory\n\n## Requirements\n\n- Java Runtime Environment (JRE)\n- Android SDK Build Tools (for `zipalign` and `apksigner`)\n- `curl` for downloading tools\n- Internet connection for first run (to download APKEditor and ReVanced tools)\n\nThe script will automatically:\n\n- Download the latest APKEditor.jar on first run\n- Create a debug keystore if one doesn't exist\n- Download and update ReVanced tools if enabled (can be disabled with -n flag)\n- Create an `output` directory for all generated files\n\n## Usage\n\n```bash\n./apkcloner.sh [-n|--no-revanced] \u003cinput_file\u003e \u003csuffix1\u003e [suffix2 ...]\n```\n\nOptions:\n\n- `-n, --no-revanced`: Disable ReVanced support and skip downloading ReVanced tools\n\n### Examples\n\nClone a single APK:\n\n```bash\n./apkcloner.sh input.apk work\n# Creates output/input_work_signed.apk\n```\n\nCreate multiple clones:\n\n```bash\n./apkcloner.sh input.apk personal work family\n# Creates:\n# - output/input_personal_signed.apk\n# - output/input_work_signed.apk\n# - output/input_family_signed.apk\n```\n\nClone without ReVanced support:\n\n```bash\n./apkcloner.sh -n input.apk work\n# Creates output/input_work_signed.apk without ReVanced patching\n```\n\n### ReVanced Support\n\nThe script automatically checks if the input APK is supported by ReVanced. If supported, it will:\n\n1. Download ReVanced tools on first run\n2. Apply all available app-specific patches\n3. Sign the patched APK\n\n## Output Files\n\nAll generated files are placed in the `output` directory:\n\n- `output/\u003cbase_name\u003e_\u003csuffix\u003e_signed.apk`: The final signed APK ready for installation\n- `output/\u003cbase_name\u003e_decompile_xml`: Temporary directory for decompiled resources\n\n## Notes\n\n- The script verifies required tools (`apksigner` and `zipalign`) before starting\n- Original APK remains unchanged\n- Temporary files are cleaned up automatically\n- Debug keystore is created automatically if needed\n- All generated files are organized in the `output` directory\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjaredcat%2Fapk-cloner","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjaredcat%2Fapk-cloner","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjaredcat%2Fapk-cloner/lists"}