Skip to content

Commit

Permalink
0.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Zaitsev committed Sep 28, 2016
1 parent 665c9be commit 445c910
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![version](https://img.shields.io/badge/version-0.0.4-brightgreen.svg)](https://github.com/alexzaitsev/apk-dependency-graph/releases/tag/0.0.4) [![Android Arsenal](https://img.shields.io/badge/Android%20Arsenal-apk--dependency--graph-blue.svg?style=flat)](http://android-arsenal.com/details/1/4411)
[![version](https://img.shields.io/badge/version-0.0.5-brightgreen.svg)](https://github.com/alexzaitsev/apk-dependency-graph/releases/tag/0.0.4) [![Android Arsenal](https://img.shields.io/badge/Android%20Arsenal-apk--dependency--graph-blue.svg?style=flat)](http://android-arsenal.com/details/1/4411)

Android dependency visualizer. It's tool that helps to visualize current state of your project. It's really easy to see how tight your classes are coupled.

Expand Down Expand Up @@ -45,7 +45,7 @@ java -jar apktool_2.2.0.jar d path-to-apk.apk -o path-to-folder-with-decompiled-
```
After this run `analyzer`:
```
java -jar apk_dependency_graph_0.0.4.jar -i path-to-folder-with-decompiled-files -o analyzed.js -f com.example.test
java -jar apk_dependency_graph_0.0.5.jar -i path-to-folder-with-decompiled-files -o analyzed.js -f com.example.test
```
I suggest to use your package name as filter. If you don't want to filter just pass `nofilter`.

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion run.bat
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ Set outPath=%~dp0\%Name:~0,-4%
Set jsonPath=%~dp0\analyzed.js

java -jar %~dp0\apktool_2.2.0.jar d %1 -o %outPath% -f
java -jar %~dp0\apk_dependency_graph_0.0.4.jar -i %outPath% -o %jsonPath% -f %2
java -jar %~dp0\apk_dependency_graph_0.0.5.jar -i %outPath% -o %jsonPath% -f %2
2 changes: 1 addition & 1 deletion run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ outPath=${dir}"/"${xpref}
jsonPath=${dir}"/analyzed.js"

eval "java -jar ${dir}'/apktool_2.2.0.jar' d ${fileName} -o ${outPath} -f"
eval "java -jar ${dir}'/apk_dependency_graph_0.0.4.jar' -i ${outPath} -o ${jsonPath} -f $2"
eval "java -jar ${dir}'/apk_dependency_graph_0.0.5.jar' -i ${outPath} -o ${jsonPath} -f $2"

0 comments on commit 445c910

Please sign in to comment.