I am looking at way of detecting what frameworks application is using.
For example, say some XYZ application uses carbon framework and cocoa framework, then my program should be able to detect that this XYZ application makes use of carbon framework and cocoa framework.
Any help would be highly appreciated.
Thanks, Rahul
The easiest way is to run
otool -L
on the application binary. For instance,If you cannot run
otool
for some reason, you can always read its source code and use it according to its licence.