Answer by G.Swift for xcode is creating generic xcode archive instead of iOS...
In my case issue was in a scheme. I had two targets marked as "Archive". This happened when I duplicated one of my targets. In Scheme -> Build -> Targets I just remove this one which I do not...
View ArticleAnswer by possen for xcode is creating generic xcode archive instead of iOS...
Turns out I had two app targets in my scheme. I saw when I built, the products folder ended up with two apps. There were two versions of the app in the same bundle. Following @Got99Errors' suggestion...
View ArticleAnswer by bluebinary for xcode is creating generic xcode archive instead of...
After trying all of the other suggestions (checking that the build is single-target, clearing the Derived Data folder, closing and reopening Xcode, etc), I have found that rebooting the system resolves...
View ArticleAnswer by Nik Kov for xcode is creating generic xcode archive instead of iOS...
This helped for me (2018 year) gem install cocoapods --pre pod 1.5.0.beta.1 update Check shared in scheme settings.
View ArticleAnswer by Josep Alsina for xcode is creating generic xcode archive instead of...
Make sure that you have the Build field set under Project Settings > General.
View ArticleAnswer by Nianliang for xcode is creating generic xcode archive instead of...
One of cases is you have to move headers (if any) from Public to Project in the Build Phase / Headers....
View ArticleAnswer by Kalpesh Panchasara for xcode is creating generic xcode archive...
I know its late to reply, but yes i got the solution by following below steps: Go to Project Navigator Select Targets Go to Build Phases Check for Target Dependencies and remove it Clean & Build...
View ArticleAnswer by alparsons for xcode is creating generic xcode archive instead of...
My issue started after a pod install, problem went away after updating cocoapods (from 0.38 to 0.39) and running pod install again.
View ArticleAnswer by Yhondri for xcode is creating generic xcode archive instead of iOS...
The problem that I had was CocoaPods version 0.38.2., after upgrade CocoaPods to the later version (0.39.0.beta.4) all works fine. $gem install cocoapods --pre Then: $pod update
View ArticleAnswer by Jules for xcode is creating generic xcode archive instead of iOS...
None of these worked for me, it was cocoapods in my case, had to uninstall all and install the release version sudo gem uninstall cocoapods sudo gem uninstall cocoapods-core sudo gem uninstall...
View ArticleAnswer by Got99Errors for xcode is creating generic xcode archive instead of...
My case wasn't 'skip install' nor a cocoapods issue. It appears that one of the 3rd party frameworks which I ended up not using was the cause for this. The solution was simply removing it. In order to...
View ArticleAnswer by Kasas for xcode is creating generic xcode archive instead of iOS...
I had a problem with Cocoapods 0.38.1, after upgrading some projects it was generating me the xCode Generic Archive... after following all the steps the only way to create an ipa again was downloading...
View ArticleAnswer by daksh_019 for xcode is creating generic xcode archive instead of...
I had to do things: go to Product -> Schemes -> Manage : Here make sure that only one scheme is selected and that is your current scheme go to Product -> Schemes -> Edit: there are options...
View ArticleAnswer by Benkax for xcode is creating generic xcode archive instead of iOS...
My case is I got 2 target in the project, and once I set one of the target to Skip Install = "YES", the issue resolved
View ArticleAnswer by user9527 for xcode is creating generic xcode archive instead of iOS...
I have this problem too. And I tried every solution here. (This is a project in an xcode-workspace) Finally I solved...... I clean everything in Derived data folder, close the workspace, then close...
View ArticleAnswer by AlexeyVMP for xcode is creating generic xcode archive instead of...
In my case problem was "Skip install" set to "NO" for one of embedded static libraries. Also useful link: https://developer.apple.com/library/mac/technotes/tn2215/_index.html
View ArticleAnswer by mkko for xcode is creating generic xcode archive instead of iOS App...
In my case none of the suggested solutions worked as the project file was fine. I simply had to remove everything in the Derived Data folder and things got back to normal. You can find it from the...
View ArticleAnswer by helloWorld for xcode is creating generic xcode archive instead of...
I agree with @cat's response. I by mistake had two build targets under manage scheme and that was the issue for me. Sip was NO already. Checking this step can help you debug more if Skip is already set...
View ArticleAnswer by cat for xcode is creating generic xcode archive instead of iOS App...
In XCode 5 the same error occurs if you have multiple targets and wrong checkmarks in Manage Schemes. Then Xcode puts 2 binaries into 1 Generic Archive. This does not affect checked in files into e.g....
View ArticleAnswer by somasekhar for xcode is creating generic xcode archive instead of...
If you have any .xcodeproj files in Project>Targets>Build Phases>target dependencies remove it from there and then build your ipa. It works for me. Cheers
View Articlexcode is creating generic xcode archive instead of iOS App Archive
I'm a beginner in iPhone development and I tried to create an ipa with my profile and valid certificate but xcode is creating a generic xcode archive file instead of iOS app archive because in my code...
View ArticleAnswer by sebastienhamel for xcode is creating generic xcode archive instead...
In XCode 11, in my case it was none of the aboves. I had some HTML files that were part of my target ("Target Membership") once I removed them, I was able to generate the proper archive. Basically,...
View ArticleAnswer by KRS1 for xcode is creating generic xcode archive instead of iOS App...
I was using cocoa-pods and when you go to manage schemes the Container was set to the xcodeproj instead of the xcworkspace. When set to xcworkspace it worked.
View ArticleAnswer by acecilia for xcode is creating generic xcode archive instead of iOS...
For me, Xcode was creating a generic Xcode archive because I was lacking the UISupportedInterfaceOrientations field in my Info.plist. After adding it, the app archive was created correctly
View ArticleAnswer by Sadanand for xcode is creating generic xcode archive instead of iOS...
None of the above answers worked for me, once I followed Apple's Tech notes I started getting lot of linking errors and headers not found errors.I tried solving those errors and no solutions worked for...
View ArticleAnswer by Aswath for xcode is creating generic xcode archive instead of iOS...
In my case, none of the solutions worked, because the root cause for me was different. I was using SPM and had a .xcdatamodel in my Swift Package. Removing it resolved the issue.
View ArticleAnswer by Vinay Podili for xcode is creating generic xcode archive instead of...
Finally I solved this kind of issue. I think this issue comes in different scenarios.I got Generic Xcode Archive Type. After that, generated archive build with distribute content.Actually, In my case...
View ArticleAnswer by Drew Reese for xcode is creating generic xcode archive instead of...
Delete/Move Xcode Developer DirectoryAfter going through and trying nearly every provided solution on stackoverflow, including fully re-installing Xcode, and cocoapods, what resolved this for me was...
View ArticleAnswer by Guilherme Muniz for xcode is creating generic xcode archive instead...
I was using Unity and my case was that the Edit -> Project Settings... -> Player -> iOS -> Other Settings -> Target SDK was set as Simulator SDK. Changing to Device SDK created the app...
View ArticleAnswer by Kirill Kuzyk for xcode is creating generic xcode archive instead of...
In my case, the issue was that my app name started with DOT symbol. MacOS treats files and folders starting with '.' as hidden, so Xcode doesn't see there is an actual app inside the archive.I develop...
View ArticleAnswer by zuziaaax for xcode is creating generic xcode archive instead of iOS...
I had the same problem in my tvOS app.Solved it by disabling: "Build Documentation during 'Build'" flag in Build Settings.Screenshot
View ArticleAnswer by jadebowl for xcode is creating generic xcode archive instead of iOS...
I tried everything suggested but it didn't work. But when I was trying to follow what @acecilia said I went to check my info.plist and the issue was that my iOS target had a lot of stuff missing...
View ArticleAnswer by Hong Duc for xcode is creating generic xcode archive instead of iOS...
My case is missing the Installation Directory field (empty) in the Build Settings section.I fixed it by filling in: Installation Directory: $(LOCAL_APPS_DIR)
View Article