{"id":15715970,"url":"https://github.com/wswenyue/apkparser","last_synced_at":"2025-05-13T00:08:59.433Z","repository":{"id":83229789,"uuid":"124836884","full_name":"wswenyue/apkparser","owner":"wswenyue","description":"android apk file parser tools","archived":false,"fork":false,"pushed_at":"2018-03-13T06:58:21.000Z","size":1200,"stargazers_count":18,"open_issues_count":1,"forks_count":2,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-05-13T00:08:52.693Z","etag":null,"topics":["android","apk","apk-parser","apkparser","brew","shell"],"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/wswenyue.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":"2018-03-12T05:15:16.000Z","updated_at":"2025-03-01T05:05:30.000Z","dependencies_parsed_at":"2023-06-29T00:30:26.997Z","dependency_job_id":null,"html_url":"https://github.com/wswenyue/apkparser","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wswenyue%2Fapkparser","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wswenyue%2Fapkparser/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wswenyue%2Fapkparser/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wswenyue%2Fapkparser/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wswenyue","download_url":"https://codeload.github.com/wswenyue/apkparser/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253843215,"owners_count":21972873,"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":["android","apk","apk-parser","apkparser","brew","shell"],"created_at":"2024-10-03T21:43:35.179Z","updated_at":"2025-05-13T00:08:59.406Z","avatar_url":"https://github.com/wswenyue.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# apkparser\nandroid apk file parser tools\n\n### Installation\n\nRun the following in your command-line:\n\n```shell\n$ brew tap wswenyue/apkparser \u0026\u0026 brew install apkparser\n```\n\n### How to use\n\n```shell\n$ apkparser -h\n\nusage: h\n -amstart       adb am start app intent String\n -apk \u003carg\u003e     the apk file path\n -apn           the app applicationName\n -h             help\n -info          show all info\n -kalgid        the app key sign algIdName\n -kinfo         show apk key info\n -kinterval     the app key interval\n -kissuer       the app key issuer\n -kserialno     the app key serialNumber\n -ksignmd5      the app key sign md5\n -ksignsha1     the app key sign sha1\n -ksignsha256   the app key sign sha256\n -ksubject      the app key subject\n -launcher      the app launcher [first Activity in launchers]\n -launchers     the app launchers\n -name          the app name\n -pn            the app packageName\n -vc            the app versionCode\n -vn            the app versionName\n```\n\neg:\n\n```shell\n$ apkparser -apk testapp.apk\n```\nresult:\n```json\n{\n\t\"activities\":[...],\n\t\"appName\":\"@2131165218\",\n\t\"debuggable\":\"false\",\n\t\"keyInfo\":{\n\t\t\"algIdName\":\"SHA256withRSA\",\n\t\t\"interval\":\"Wed Jul 05 14:15:05 CST 2017--Thu Apr 07 14:15:05 CST 2072\",\n\t\t\"issuer\":\"CN=Wenyue, OU=Ws, O=Ws, L=CN, ST=BJ, C=CN\",\n\t\t\"serialNumber\":\"2a7c48ce\",\n\t\t\"sign_md5\":\"6D:15:B6:36:99:10:23:FC:87:9A:0A:26:DD:65:FB:D3\",\n\t\t\"sign_sha1\":\"FC:7E:6C:CE:60:0D:8E:0D:17:58:DA:4D:01:71:A7:BE:09:C0:3A:29\",\n\t\t\"sign_sha256\":\"F5:7C:6E:34:F0:AD:82:F6:9C:09:09:AA:88:09:26:A4:C9:F5:3E:74:68:C4:62:2A:FC:9D:9F:5A:28:56:8A:B7\",\n\t\t\"subject\":\"CN=Wenyue, OU=Ws, O=Ws, L=CN, ST=BJ, C=CN\",\n\t\t\"version\":3\n\t},\n\t\"launchers\":[\n\t\t{\n\t\t\t\"intentFilter\":{\n\t\t\t\t\"actions\":[{\n\t\t\t\t\t\"name\":\"android.intent.action.MAIN\"\n\t\t\t\t}],\n\t\t\t\t\"categories\":[{\n\t\t\t\t\t\"name\":\"android.intent.category.LAUNCHER\"\n\t\t\t\t}]\n\t\t\t},\n\t\t\t\"name\":\"win.wswenyue.helloandroid.MainActivity\"\n\t\t}\n\t],\n\t\"packageName\":\"win.wswenyue.helloandroid\",\n\t\"versionCode\":\"1\",\n\t\"versionName\":\"1.0\"\n}\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwswenyue%2Fapkparser","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwswenyue%2Fapkparser","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwswenyue%2Fapkparser/lists"}