https://github.com/zonble/signtool
A tool for re-signing an iOS application archive
https://github.com/zonble/signtool
Last synced: 5 months ago
JSON representation
A tool for re-signing an iOS application archive
- Host: GitHub
- URL: https://github.com/zonble/signtool
- Owner: zonble
- Created: 2011-10-15T04:40:21.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2011-10-17T04:08:37.000Z (over 13 years ago)
- Last Synced: 2023-04-13T23:06:06.604Z (about 2 years ago)
- Language: Python
- Homepage:
- Size: 128 KB
- Stars: 9
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SignTool, a utility to help you re-sign your binary.
Xcode makes building your application and submit it to AppStore easy. After selecting "Archive" from the menu, Xode builds a release verison and signs your binary, what you need to do then is to just click on the "submit" button. However, sometimes you just need to re-sign your exising binary using another identity.
You can use a command line tool to do it, the command is "codesign -s IDENTIFY PATH_TO_YOUR_APP", but a GUI tool can make the task more friendly. That is why SignTool is built.
## How to use it?
1. Drag and drop your Xcode archive to SignTool's window.
2. Select a new identity for code signing.
3. Click on the "re-sign" button. Done!Easy, right?