Building for Jailbroken devices on iOS SDK 4.2

前端 未结 3 1432
忘掉有多难
忘掉有多难 2021-01-28 16:31

I have an app I distribute over Cydia. It\'s nothing hacky, just a GUI to connect to a web API.

The last time I submitted an update was before SDK 4.0, I used the instruc

3条回答
  •  自闭症患者
    2021-01-28 17:08

    The problem was ldid can't sign fat binaries, meaning you need to build your app for only armv6 or armv7 (not both). You can do that by going in your project settings and editing the Architectures parameter.

    To double check your binary only have one architecture, you can use the lipo tool:

    lipo -i MyApp.app/MyApp
    

提交回复
热议问题