# apk2dot **Repository Path**: skmg/apk2dot ## Basic Information - **Project Name**: apk2dot - **Description**: 获取android .apk文件的函数调用图,以.dot文件形式输出。(get apk call graph,save as dot file) - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-02-26 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # apk2dot #### Introduction This project is constructed to transform apk file into dot file. So, we can get the call graph of an android apk file. And then, we can analysis the apk files with call graph easily. #### 安装教程 1. android sdk with at least one version of sdk, like android 9.0 2. jdk1.8 3. myeclipse with maven #### 使用说明 run options 1. -f transfor an apk file to dot file. 2. -d transfor a directory of apk files to dot files. 3. -i the input directory storing .apk files. 4. -o the output directory to store .dot files. 5. -s the android sdk directory, like E:\android-sdk-windows\platforms. 6. -c the call backs file. It can be an empty file but nessesary. 7. Example 1:java -jar apk2dot.jar -f -i chrome.apk -o outdir -s E:\android-sdk-windows\platforms -c cb.txt 8. Example 2:java -jar apk2dot.jar -d -i inputdir -o outdir -s E:\android-sdk-windows\platforms -c cb.txt #### 参与贡献 1. Fork 本仓库 2. 新建 Feat_xxx 分支 3. 提交代码 4. 新建 Pull Request