Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to scan all open source libraries used in a project?

I want to scan all the libraries used in the android project. So that I can mention those libraries in a list whenever I remove or add new libraries in my project.

Like I added some libraries in-app dependencies and i want all of them to list down with their version name on one screen. So that I can mention used libraries with their licences in-app.

I want to identify that process in an automated way. So that whenever I add or remove the library from Gradle it will reflect the same on app.

like image 557
Chandela Avatar asked Jan 18 '26 23:01

Chandela


1 Answers

https://github.com/mikepenz/AboutLibraries seems to be better than the Google tools.

implementation "com.mikepenz:aboutlibraries-core:7.1.0"
implementation "com.mikepenz:aboutlibraries:7.1.0"
like image 144
Andrew Avatar answered Jan 20 '26 20:01

Andrew