objective c - Check supported architectures of iOS app -
how can check supported archs of apps (ex. myapp.app)?
this folder product after building xcode.
i use command: "file myapp.app/myapp" , shows:
mach-o executable arm
what this?
i want know architectures supports (armv6, armv7, armv7s or i386).
you can use lipo -info myapp.app/myapp
see architecures supported.
Comments
Post a Comment