DanTheMan827 / ios-app-signer

This is an app for OS X that can (re)sign apps and bundle them into ipa files that are ready to be installed on an iOS device.
https://dantheman827.github.io/ios-app-signer
GNU General Public License v3.0
5.64k stars 1.06k forks source link

mass resign #34

Closed kmddd59 closed 7 years ago

kmddd59 commented 7 years ago

@DanTheMan827 i have a question about this code i want to sign more than one app at a time is it possible to make it sign all apps in one folder if so how would i go about this?

DanTheMan827 commented 7 years ago

There is not batch-sign functionality.

ezhes commented 7 years ago

I've actually sort of hacked something in that could help you with this. I made a fork with command line support. Simply run the app binary with the parameters -ipa for your source IPA, -ipaout for your output, -cert for your certificate name as it appears in the menu choices of the app (VERY IMPORTANT!), and -profileloc for the path to your profile. These paths all need to be absolute because while the shell supports ~/Downloads... apps don't.

You can make a quick bash script to quickly run the command for each one.

kmddd59 commented 7 years ago

thx will test soon