├── .gitignore ├── README.md ├── main.py ├── preview ├── circular_dependency_graph.jpg └── dependency_graph.jpg ├── requirements.txt └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.html 3 | __pycache__/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariodujic/Android-multimodule-dependency-graph/HEAD/README.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariodujic/Android-multimodule-dependency-graph/HEAD/main.py -------------------------------------------------------------------------------- /preview/circular_dependency_graph.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariodujic/Android-multimodule-dependency-graph/HEAD/preview/circular_dependency_graph.jpg -------------------------------------------------------------------------------- /preview/dependency_graph.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariodujic/Android-multimodule-dependency-graph/HEAD/preview/dependency_graph.jpg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariodujic/Android-multimodule-dependency-graph/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariodujic/Android-multimodule-dependency-graph/HEAD/utils.py --------------------------------------------------------------------------------