-
Notifications
You must be signed in to change notification settings - Fork 440
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue in Uploading to Test Flight #328
Comments
Hi Team |
@ShashankOodles1 thank you for the update and bug report! |
Hi @skywinder i would like to make PR as issue is working in ios 13 and On Mac App and M1 chip which I have resolved in web3swift Pod Aes file. |
Hi Team
I am using this library but while working on XCode 11.4 Version when I am trying to upload the app to test flight its throws an error - ERROR ITMS-90725: "SDK Version Issue. This app was built with the iOS 13.4 SDK. All iOS apps submitted to the App Store must be built with the iOS 14 SDK or later, included in Xcode 12 or later."
So when I am Trying to Update Xcode With 12.4 it throws another error while Uploading -
The issue is coming on the AES.swift file which is :
"Inout expression creates a temporary pointer, but argument #1 should be a pointer that outlives the call to '+'"
try CCCryptorFinal(cryptor, &outBytes + outLength, outBytes.count, &outLength).check()
In Xcode 11.7 it was just a warning but in Xcode 12 it becomes an error if we use
try CCCryptorFinal(cryptor, &outBytes, outBytes.count, &outLength).check()
The text was updated successfully, but these errors were encountered: