The last week I've been dealing with properly adding frameworks into my iOS app so that I can upload it to the app store. I took out some dynamic frameworks, and replaced them with static ones. However, one of the frameworks I'm using is static (which I've double checked using the method explained here), but the app store is still not allowing me to upload with it. I'm getting the following message when doing so:
UserInfo={NSLocalizedDescription=Item at "/Users/aaronmednick/Library/Developer/Xcode/Archives/2018-06-20/myApp 6-20-18, 3.01 PM.xcarchive/Products/Applications/myapp.app/Python.framework/Versions/2.7" did not contain a "archived-expanded-entitlements.xcent" resource.}
For reference here's my output for checking that the Python.framework I'm using is a static one:
Aarons-MacBook-Air:Python.framework aaronmednick$ ls -l
total 0
lrwxr-xr-x 1 aaronmednick staff 24 Jun 19 20:58 Headers -> Versions/Current/Headers
lrwxr-xr-x 1 aaronmednick staff 23 Jun 19 20:58 Python -> Versions/Current/Python
lrwxr-xr-x 1 aaronmednick staff 26 Jun 19 20:58 Resources -> Versions/Current/Resources
drwxr-xr-x@ 4 aaronmednick staff 128 Jun 19 20:58 Versions
Aarons-MacBook-Air:Python.framework aaronmednick$ file Python
Python: Mach-O universal binary with 5 architectures: [i386:current ar archive] [arm64]
Python (for architecture i386): current ar archive
Python (for architecture armv7): current ar archive
Python (for architecture armv7s): current ar archive
Python (for architecture x86_64): current ar archive
Python (for architecture arm64): current ar archive
Any help with this issue would be much appreciated!