I have created one framework which uses APNS using Xcode 7.2.1 which I am using in my App and trying to upload the build to the AppStore. While uploading app to the AppStore I am getting the issue below.
答案 0 :(得分:0)
You cannot use dynamic frameworks with iOS 7 and before. You will either have to update your app to a minimum OS level of 8.0 or not use the framework.
There appear to be other potential alternatives that allow you to do conditional linking, but that is dependent on what the framework is used for. If it's optional functionality, that solution may work for you. If it's something critical, like in the network communications, you are out of luck. Here's some details.