Search code examples
iosiphonecode-signingipaosx-yosemite

--resource-rules has been deprecated in mac os x >= 10.10


I tried to resign my ipa file with new provisioning profile on Mac Os 10.10 with iResign app but I got this warning: "Warning: --resource-rules has been deprecated in Mac OS X >= 10.10".

What should I do now?


Solution

  • I found workaround: if you run the iResign app from XCode — then you will resign app without problem (warning will appears in console instead of popup). But if you close XCode and run app alone — then popup will back to you!

    BTW: bug found :) The condition

    if (systemVersionFloat < 10.9f)
    

    Is broken for Yosemite 10.10. Funny.

    Thanks,