xcframework

iOS Dyanmic Framework with Firebase Dependencies

我怕爱的太早我们不能终老 提交于 2021-02-05 08:17:49
问题 We are developing a framework that is dependent on some firebase dependencies like login, analytics, etc. Once our framework is developed we will distribute it to our customers. Things to be taken care of are Code should not be visible(Best suggestion is to create XCFramework) If possible create a dynamic framework instead of a static framework Can be distributed via Swift package manager or cocoapods What we have tried We have tried to create a dynamic framework using pods and then create a

iOS Dyanmic Framework with Firebase Dependencies

柔情痞子 提交于 2021-02-05 08:17:06
问题 We are developing a framework that is dependent on some firebase dependencies like login, analytics, etc. Once our framework is developed we will distribute it to our customers. Things to be taken care of are Code should not be visible(Best suggestion is to create XCFramework) If possible create a dynamic framework instead of a static framework Can be distributed via Swift package manager or cocoapods What we have tried We have tried to create a dynamic framework using pods and then create a

XCFramework issue, A library with the identifier “ios-armv7_arm64” already exists

元气小坏坏 提交于 2021-01-27 06:51:07
问题 While creating XCFramework, I'm getting the below-mentioned message on the terminal and xcframework is not getting generated A library with the identifier "ios-armv7_arm64" already exists. This is the command that I'm running xcodebuild -create-xcframework \ -framework ./archives/My-iOS.xcarchive/Products/Library/Frameworks/My.framework \ -framework ./archives/My-iOS-Simulator.xcarchive/Products/Library/Frameworks/My.framework \ -output My.xcframework Is there anything that I'm missing? 回答1:

XCFramework issue, A library with the identifier “ios-armv7_arm64” already exists

蹲街弑〆低调 提交于 2021-01-27 06:50:43
问题 While creating XCFramework, I'm getting the below-mentioned message on the terminal and xcframework is not getting generated A library with the identifier "ios-armv7_arm64" already exists. This is the command that I'm running xcodebuild -create-xcframework \ -framework ./archives/My-iOS.xcarchive/Products/Library/Frameworks/My.framework \ -framework ./archives/My-iOS-Simulator.xcarchive/Products/Library/Frameworks/My.framework \ -output My.xcframework Is there anything that I'm missing? 回答1:

iOS/macOS app distribution failed while using framework after upgrading Xcode12 and macOS BigSur

佐手、 提交于 2021-01-10 08:19:25
问题 We are unable to distribute our sample app which uses our framework as well as our users can't. While archiving and distributing to AppStore, the app is rejected with the following message: Invalid Bundle - One or more dynamic libraries that are referenced by your app are not present in the dylib search path. If your app contains bitcode, bitcode processing may have failed. Because of these errors, this build of your app will not be able to be submitted for review or placed on the App Store.

iOS/macOS app distribution failed while using framework after upgrading Xcode12 and macOS BigSur

不羁岁月 提交于 2021-01-10 08:17:11
问题 We are unable to distribute our sample app which uses our framework as well as our users can't. While archiving and distributing to AppStore, the app is rejected with the following message: Invalid Bundle - One or more dynamic libraries that are referenced by your app are not present in the dylib search path. If your app contains bitcode, bitcode processing may have failed. Because of these errors, this build of your app will not be able to be submitted for review or placed on the App Store.

iOS/macOS app distribution failed while using framework after upgrading Xcode12 and macOS BigSur

半世苍凉 提交于 2021-01-10 08:16:38
问题 We are unable to distribute our sample app which uses our framework as well as our users can't. While archiving and distributing to AppStore, the app is rejected with the following message: Invalid Bundle - One or more dynamic libraries that are referenced by your app are not present in the dylib search path. If your app contains bitcode, bitcode processing may have failed. Because of these errors, this build of your app will not be able to be submitted for review or placed on the App Store.

XCFramework with Pods Dependencies

梦想的初衷 提交于 2020-12-05 11:41:05
问题 Our goal is to create a framework that hides our internal code and provide SDK to our customers. We have thought of creating XCFramework which fulfills our requirement. Umbrella framework is also suggested over the internet but mostly suggested to avoid that approach. Our Framework is dependent on some third-party libraries which we are using via Pods. Issue: XCFramework does not compile pods framework. We got an error like "Xyz(Pod) module not found". Even if we add pods from the client-side

XCFramework with Pods Dependencies

ⅰ亾dé卋堺 提交于 2020-12-05 11:40:26
问题 Our goal is to create a framework that hides our internal code and provide SDK to our customers. We have thought of creating XCFramework which fulfills our requirement. Umbrella framework is also suggested over the internet but mostly suggested to avoid that approach. Our Framework is dependent on some third-party libraries which we are using via Pods. Issue: XCFramework does not compile pods framework. We got an error like "Xyz(Pod) module not found". Even if we add pods from the client-side