Posts

Post not yet marked as solved
0 Replies
418 Views
Is there a way to disable iOS Keyboard text replacement in UITextView via swift code? (Settings > General > Keyboards > Text Replacement) Note: textView.autocorrectionType = .no doesn't affect text replacement
Posted
by hassan313.
Last updated
.
Post not yet marked as solved
0 Replies
1.2k Views
I use this package in my app:  https://github.com/liamnichols/_InternalSwiftSyntaxParser  which contains an xcframework: _InternalSwiftSyntaxParser.xcframework which contains dylib files All is good with this package, my app works well in simulator and real device. But when I uploaded a version to the App Store Connect, I got this error message: ITMS-90426: Invalid Swift Support - The SwiftSupport folder is missing. Rebuild your app using the current public (GM) version of Xcode and resubmit it. Is there a solution for that? I searched a lot with out any chance to solve it. What I tried: (1) I tried to add manually the SwiftSupport folder using the script here: https://gist.github.com/adamzarn/6bb89d91ed4b8c3d3fb25363c221441f (2) Then the error message is now: ITMS-90430: Invalid Swift Support - The file lib_InternalSwiftSyntaxParser.dylib doesn’t have a signing ID. Sign the file, rebuild your app using the current public (GM) version of Xcode, and resubmit it. (3) Trying to signing the file using: codesign --force --timestamp --sign <name of certificate> <binary you want to sign> But I always get the same error message in (2)
Posted
by hassan313.
Last updated
.