How can I get a percent count of third-party code in my Xcode project? It is necessary to find not the number of lines in the "Pods" directory, but the amount of code described in the "Pods" directory that is used in the main project directory.
For example:
- I have a project with 100 lines of code
- In this project installed Alamofire pod
- One line of 100 lines code is "let method = HTTPMethod.get", that refers to Alamofire pod
The result is: 1% of third-party code usage