{"id":13471151,"url":"https://github.com/sonyxperiadev/ApkAnalyser","last_synced_at":"2025-03-26T13:30:53.340Z","repository":{"id":2963933,"uuid":"3978603","full_name":"sonyxperiadev/ApkAnalyser","owner":"sonyxperiadev","description":null,"archived":false,"fork":false,"pushed_at":"2023-07-13T22:18:45.000Z","size":4832,"stargazers_count":1027,"open_issues_count":6,"forks_count":252,"subscribers_count":128,"default_branch":"master","last_synced_at":"2025-03-20T06:12:17.634Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Java","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/sonyxperiadev.png","metadata":{"files":{"readme":"README","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}},"created_at":"2012-04-10T03:38:02.000Z","updated_at":"2025-02-27T16:55:25.000Z","dependencies_parsed_at":"2024-01-03T04:02:33.726Z","dependency_job_id":null,"html_url":"https://github.com/sonyxperiadev/ApkAnalyser","commit_stats":{"total_commits":3,"total_committers":2,"mean_commits":1.5,"dds":"0.33333333333333337","last_synced_commit":"d23b0e4a3d486f9ca9039c23ac24d8584d322eb2"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sonyxperiadev%2FApkAnalyser","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sonyxperiadev%2FApkAnalyser/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sonyxperiadev%2FApkAnalyser/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sonyxperiadev%2FApkAnalyser/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sonyxperiadev","download_url":"https://codeload.github.com/sonyxperiadev/ApkAnalyser/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245662754,"owners_count":20652075,"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-07-31T16:00:40.613Z","updated_at":"2025-03-26T13:30:50.977Z","avatar_url":"https://github.com/sonyxperiadev.png","language":"Java","funding_links":[],"categories":["Java","Android","Инструменты анализа","Tools"],"sub_categories":["Tools","Static Analysis Tools"],"readme":" Copyright (C) 2012 Sony Mobile Communications AB\n\n This file is part of ApkAnalyser.\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n\n==============================================================================\n\nIntroduction\n------------\nApkAnalyser is a static, virtual analysis tool for examining and validating \nthe development work of your Android app. It's a complete tool chain which supports \nmodification of the binary application with more printouts. You are then able to \nrepack, install, run and verify the result from logcat. ApkAnalyser also supports \nresource analysis, and you can decode XML, look up resource references and detect \npotential issues in your app.\n\nIt��s a stand-alone J2SE application, released under Apache 2.0 license, 100% written in Java.\n\n\nOpen Source Projects\n--------------------\n\nSome code of following OSS projects are imported and modified:\n1. smali, dalvik assembler/disassembler, http://code.google.com/p/smali/\n2. apktool, reengineering binary Android apps, http://code.google.com/p/android-apktool/\n3. Android4ME, J2ME port of Google's Android, http://code.google.com/p/android4me/\n4. Android Open Source Project\n\nFollowing OSS projects are used as jar library:\n1. ASM, Java bytecode manipulation and analysis framework, http://asm.ow2.org/license.html \n2. Jgraphx, Java Graph Visualization Library, http://www.jgraph.com/jgraph.html\n3. Xpp3, a streaming pull XML parser, http://www.extreme.indiana.edu/dist/java-repository/xpp3/distributions\n4. L2fprod, extended swing components, http://www.l2fprod.com/common/\n\n\nBuild Infomation\n----------------\n\nFirstly, the latest ApkAnalyser is available at:\n\nhttps://github.com/sonyxperiadev/ApkAnalyser\n\nApkAnalyser includes two open source projects, smali and apktool.\nThe projects must be built in sequence of:\n\n1. smali\n2. apktool\n3. apkanalyser\n\nAll of the projects are managed by Maven2 build system.\n\nhttp://maven.apache.org/download.html\n\nThe project could be built on JDK1.5, 1.6 or 1.7.\n\n\nBuild Steps\n-----------\n\n1. Get the latest code \ngit clone git://github.com/sonyxperiadev/ApkAnalyser.git\n\n2. Build smali project\ncd smali\nmvn install\n\n3. Build apktool project\ncd ../apktool\nmvn install\n\n4. Install jgraphx into local Maven repository\ncd ../apkanalyser\nmvn install:install-file -Dfile=lib/jgraphx.jar -DgroupId=com.mxgraph -DartifactId=jgraphx -Dversion=1.7.1.9 -Dpackaging=jar -DgeneratePom=true\n\n5. Build and package ApkAnalyser\nmvn assembly:assembly\n\n6. The executable jar file should be at \napkanalyser\\target\\apkanalyser-{version}-exec.jar\n\nOptionally, Eclipse project could also be generated by \"mvn eclipse:eclipse\" command.\n\n\nLaunch ApkAnalyser\n------------------\n\nTo launch it, just execute: \n\njava -jar ApkAnalyser.jar\n\nSometimes, ApkAnalyser consumes lots of memory for analysing the dalvik bytecodes. \nIt may run out of memory expecially for loading more than one big odexed APK files.\nIn that case, the max heap size should be explicitly incrased by \"-Xmx1024m\" parameter: \n\njava -Xmx1024m -jar ApkAnalyser.jar\n\n\nContacts\n--------\n\nZhang Bojie, Sony Mobile Communications\nbojie.zhang@sonymobile.com\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsonyxperiadev%2FApkAnalyser","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsonyxperiadev%2FApkAnalyser","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsonyxperiadev%2FApkAnalyser/lists"}