How to check the iOS SDK version used to compile .ipa or .app file

前端 未结 3 943
猫巷女王i
猫巷女王i 2020-12-22 22:33

I have just the .ipa files (I don\'t have the build env) without any access to the project. I\'m trying to determine if they were built linking SDK 7. Is there a way or util

3条回答
  •  盖世英雄少女心
    2020-12-22 23:11

    There is another way to do it: open Info.plist

    plutil -p Payload/APPNAME.app/Info.plist | grep DTSDKName
    

    That gives you result like:

    "DTSDKName" => "iphoneos7.0"
    

    P.S. This way works for very ancient apps too.

提交回复
热议问题