Reputation: 41
I have done HID implementation for HID. I've wrapped HID approve SDK in my application and using the HID functionality.
When i tried to build and publish the app in App store connect, then i got a error message from Apple App store connect like below.
ITMS-90863: Apple silicon Macs support issue
"Dear Developer, We identified one or more issues with a recent delivery for your app, "Test HID app". Your delivery was successful, but you may wish to correct the following issues in your next delivery:
ITMS-90863: Apple silicon Macs support issue - The app links with libraries that are not present on Mac:
@rpath/HID_Approve_SDK.framework/HID_Approve_SDK
After you’ve corrected the issues, you can upload a new binary to App Store Connect."
How to get rid of this error? Could someone pls help.
Upvotes: 0
Views: 139
Reputation: 11683
In my case, the issue was because the Runpath Search Paths (LD_RUNPATH_SEARCH_PATHS
) was empty. I cleared that build setting by mistake. I added @executable_path/Frameworks
to the Runpath Search Paths, which was the right setting for my case, and I was able to submit the app to the App Store.
Upvotes: 1