dyld:未加载库:@rpath/SwiftyStoreKit.framework/Versions/A/SwiftyStoreKit - macCatalyst
dyld: Library not loaded: @rpath/SwiftyStoreKit.framework/Versions/A/SwiftyStoreKit - macCatalyst
运行 失败并出现 mac Catalyst
的错误
require 'cocoapods-catalyst-support'
platform :ios, '10.0'
target 'MyApp' do
use_frameworks!
pod 'SwiftyStoreKit'
end
# Configure your macCatalyst dependencies
catalyst_configuration do
# Uncomment the next line for a verbose output
verbose!
# ios '<pod_name>' # This dependency will only be available for iOS
# macos '<pod_name>' # This dependency will only be available for macOS
end
post_install do |installer|
installer.configure_catalyst
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['APPLICATION_EXTENSION_API_ONLY'] = 'No'
config.build_settings['ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES'] = 'Yes'
end
end
end
end
这是我的 podfile
,你还包含更多 pods 其他内容。比 SwiftyStoreKit
。
我可以在没有 SwiftyStoreKit
的情况下 运行,但是如果我添加然后得到这个错误和断点
dyld: Library not loaded: @rpath/SwiftyStoreKit.framework/Versions/A/SwiftyStoreKit
Referenced from: /Users/admin/Library/Caches/...../Build/Products/Debug-maccatalyst/MyApp.app/Contents/MacOS/MyApp
Reason: image not found
我正在使用此工具为 mac 催化剂排除 pods:https://github.com/fermoya/cocoapods-catalyst-support
使用
Xcode:12.4
macOS : 大苏尔 11.2.2
将 SwiftStoreKit
与 Swift 包管理器 集成解决了问题。
如果您使用的是 Xcode 11 或更高版本:
- 单击文件
- Swift 套餐
- 添加包依赖...
- 为 SwiftyStoreKit 指定 git URL。
运行 失败并出现 mac Catalyst
require 'cocoapods-catalyst-support'
platform :ios, '10.0'
target 'MyApp' do
use_frameworks!
pod 'SwiftyStoreKit'
end
# Configure your macCatalyst dependencies
catalyst_configuration do
# Uncomment the next line for a verbose output
verbose!
# ios '<pod_name>' # This dependency will only be available for iOS
# macos '<pod_name>' # This dependency will only be available for macOS
end
post_install do |installer|
installer.configure_catalyst
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['APPLICATION_EXTENSION_API_ONLY'] = 'No'
config.build_settings['ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES'] = 'Yes'
end
end
end
end
这是我的 podfile
,你还包含更多 pods 其他内容。比 SwiftyStoreKit
。
我可以在没有 SwiftyStoreKit
的情况下 运行,但是如果我添加然后得到这个错误和断点
dyld: Library not loaded: @rpath/SwiftyStoreKit.framework/Versions/A/SwiftyStoreKit
Referenced from: /Users/admin/Library/Caches/...../Build/Products/Debug-maccatalyst/MyApp.app/Contents/MacOS/MyApp
Reason: image not found
我正在使用此工具为 mac 催化剂排除 pods:https://github.com/fermoya/cocoapods-catalyst-support
使用
Xcode:12.4 macOS : 大苏尔 11.2.2
将 SwiftStoreKit
与 Swift 包管理器 集成解决了问题。
如果您使用的是 Xcode 11 或更高版本:
- 单击文件
- Swift 套餐
- 添加包依赖...
- 为 SwiftyStoreKit 指定 git URL。