In Xcode 14 I am getting error Abi.json file missing on archive. I am able to run and debug on devices using Xcode 14. Any one knows how to fix this?
In Xcode 14 I am getting error Abi.json file missing on archive. I am able to run and debug on devices using Xcode 14. Any one knows how to fix this?
2
Answers
This is how i managed to hack around it.
I was able to copy the abi.json file from derived data created in Debug folder instead of release folder and pasted it in the project file path. Rename it to .abi.json
Then create a build phases script and paste the following Script in there. I placed this script above compile Sources. But you may place it anywhere else.
While archiving this ProductName.abi.json will be renamed to the name it is supposed to be as part of archive step.
Can you try these options?
First clean the project.
One of the above options must work. Let me know if this works.