Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to find sdk and xcode version number from .framework or .a file

I have a .framework file and .a taken from two different projects. i want to find out the version number of the sdk used and also xcode version from the .a and .framework files.

is there a way to figure that out ?

like image 960
thndrkiss Avatar asked Oct 28 '13 18:10

thndrkiss


1 Answers

For a .framework file , you can get Xcode version

plutil -p YOUR-FRAMWORK-PATH-NAME.framework/Info.plist | grep DTXcodeBuild

you will get the output something like:

"DTXcodeBuild" => "9C40b"

9C40b stands for Xcode9.2

enter image description here

like image 71
DàChún Avatar answered Oct 04 '22 05:10

DàChún