lenhhoxung
lenhhoxung

Reputation: 2746

Check supported architectures of iOS app

How can I check supported archs of my apps (ex. MyApp.app)?

This folder is product after building by Xcode.

I use command: "file MyApp.app/MyApp" and it shows:

Mach-O executable arm

What is this?

I really want to know which architectures it supports (armv6, armv7, armv7s or i386).

Upvotes: 7

Views: 1763

Answers (1)

Markus
Markus

Reputation: 538

You can use lipo -info MyApp.app/MyApp to see what architecures are supported.

Upvotes: 13

Related Questions