{"id":19492478,"url":"https://github.com/mrkai77/export-unsigned-ipa-files","last_synced_at":"2025-04-25T19:32:28.537Z","repository":{"id":171513498,"uuid":"415404782","full_name":"MrKai77/Export-unsigned-ipa-files","owner":"MrKai77","description":"Tutorial on exporting unsigned ipa files for apps made in Xcode","archived":false,"fork":false,"pushed_at":"2022-10-29T16:21:18.000Z","size":58,"stargazers_count":67,"open_issues_count":0,"forks_count":9,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-21T09:06:45.979Z","etag":null,"topics":["essentials","guide","ios","ipa","ipados","jailbreak","macos","sideload","sideloading-ipas","terminal","tutorial","unsigned","xcode"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MrKai77.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-10-09T19:34:48.000Z","updated_at":"2025-02-26T21:17:02.000Z","dependencies_parsed_at":null,"dependency_job_id":"02f8178f-7803-4af9-8719-a59e440dd2f5","html_url":"https://github.com/MrKai77/Export-unsigned-ipa-files","commit_stats":null,"previous_names":["mrkai77/export-unsigned-ipa-files"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MrKai77%2FExport-unsigned-ipa-files","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MrKai77%2FExport-unsigned-ipa-files/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MrKai77%2FExport-unsigned-ipa-files/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MrKai77%2FExport-unsigned-ipa-files/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MrKai77","download_url":"https://codeload.github.com/MrKai77/Export-unsigned-ipa-files/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250882637,"owners_count":21502341,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["essentials","guide","ios","ipa","ipados","jailbreak","macos","sideload","sideloading-ipas","terminal","tutorial","unsigned","xcode"],"created_at":"2024-11-10T21:21:19.274Z","updated_at":"2025-04-25T19:32:28.524Z","avatar_url":"https://github.com/MrKai77.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Exporting an unsigned `.ipa` file from Xcode\nFollow steps 1️⃣,2️⃣ \u0026 3️⃣ to successfully make an unsigned `.ipa` file!\n\n### 1️⃣ Listing Schemes of a Project\n\n#### `.xcodeproj` File\n* Open Terminal and write `xcodebuild -list -project \u003cXCODEPROJ\u003e`, then replace the `\u003cXCODEPROJ\u003e` with your `.xcodeproj` file and execute the command.\n\n#### `.xcworkspace` File\n* Open Terminal and write `xcodebuild -list -workspace \u003cXCWORKSPACE\u003e`, then replace the `\u003cXCWORKSPACE\u003e` with your `.xcworkspace` file and execute the command.\n\n### 2️⃣ Making a `.xcarchive` of your Project\n\n#### `.xcodeproj` File\n* In Terminal, write `xcodebuild archive -project \u003cXCODEPROJ\u003e -scheme \u003cSCHEME\u003e -archivePath unsigned.xcarchive -configuration Release CODE_SIGN_IDENTITY=\"\" CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO` where `\u003cXCODEPROJ\u003e` and `\u003cSCHEME\u003e` are replaced with the xcodeproj file and scheme name respectively.* Then, execute the command.  \n\n#### `.xcworkspace` File\n* In Terminal, write `xcodebuild -workspace \u003cXCWORKSPACE\u003e -scheme \u003cSCHEME\u003e -configuration Release clean archive -archivePath unsigned.xcarchive CODE_SIGN_IDENTITY=”” CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO`  where `\u003cXCWORKSPACE\u003e` and `\u003cSCHEME\u003e` are replaced with the xcworkspace file and scheme name respectively.* Then, execute the command.  \n\n\u003e *If the scheme contains spaces, make sure to use quotes!\n\n### 3️⃣ Making the `.ipa` File\n\n1. First, find the `unsigned.xcarchive` file you created in step 2 and click `Show Package Contents` to enter it.\n2. Enter the `Products` folder and rename the `Applications` folder to `Payload`.\n3. Click on `Compress \"Payload\"` to make a zip file of the folder.\n4. Finally, rename the `Payload.zip` to `\u003cAPPNAME\u003e.ipa`, where `\u003cAPPNAME\u003e` is the app's name.\n\n### 🎉 Congratulations, you have successfully created a unsigned `.ipa` file of your app!\n\n⭐️ If you thought this was helpful, please fork \u0026 star this repository!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrkai77%2Fexport-unsigned-ipa-files","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmrkai77%2Fexport-unsigned-ipa-files","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrkai77%2Fexport-unsigned-ipa-files/lists"}