Posts

Post not yet marked as solved
2 Replies
Since you are using Xcode13, the problem may not be because of the code signature of our apps(You can check your code signature if you want: https://developer.apple.com/documentation/xcode/using-the-latest-code-signature-format), but due to the code signature of one of the dependencies, and removing the dependency solves the problem. In my case, I remove the dependencies one by one, and eventually found that the culprit is FirebaseAnalyticsOnDeviceConversion.
Post not yet marked as solved
2 Replies
Hi! After some tests, I realized some rules to get it working. Hope these can help you!For example,NSString.deferredLocalizedIntentsString(with: "Start Activity")1.The deferred localization depends on the Siri's language settings, not the system's.2.The deferred localization looks up the phrase "Start Activity" on main app's "localizable.strings" file, not the app extensions' or framework's.3.The "Start Activity" part won't be included in the xcatalog file generated by Xcode, so you have to use NSLocalizedString("Start Activity") somewhere in the code of main app.