未找到框架 EXLocation,OpenSSL 在生成存档时反应本机 ios xcode
Framework not found EXLocation, OpenSSL while generating archive react native ios xcode
过去 2 天我一直在尝试生成存档。我已经创建了本机反应项目。在设备上 运行 成功。但是当我试图生成存档以在试飞中上传时。它给我错误。
我的RN版本是0.64,Xcode12.5.
这是我的 pod 文件:
require_relative '../node_modules/react-native/scripts/react_native_pods'
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
require_relative '../node_modules/react-native-unimodules/cocoapods.rb'
platform :ios, '11.0'
target 'XXXX' do
use_unimodules!
config = use_native_modules!
use_react_native!(
:path => config[:reactNativePath],
# to enable hermes on iOS, change `false` to `true` and then install pods
:hermes_enabled => false
)
target 'XXXXXTests' do
inherit! :complete
# Pods for testing
end
# Enables Flipper.
#
# Note that if you have use_frameworks! enabled, Flipper will not work and
# you should disable the next line.
use_flipper!({ 'Flipper-Folly' => '2.5.3', 'Flipper' => '0.87.0', 'Flipper-RSocket' => '1.3.1' })
post_install do |installer|
react_native_post_install(installer)
end
end
我已经尝试了很多次pod deintegrated 和安装pod。但它不起作用
对我来说,它是 Podfile(platform:ios, '11.0') 和 Xcode 项目文件
中的不同应用程序目标版本
它导致 CI 管道中的存档作业失败。
匹配这两个值解决了一个问题!希望这对任何人都有帮助。
过去 2 天我一直在尝试生成存档。我已经创建了本机反应项目。在设备上 运行 成功。但是当我试图生成存档以在试飞中上传时。它给我错误。
我的RN版本是0.64,Xcode12.5.
这是我的 pod 文件:
require_relative '../node_modules/react-native/scripts/react_native_pods'
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
require_relative '../node_modules/react-native-unimodules/cocoapods.rb'
platform :ios, '11.0'
target 'XXXX' do
use_unimodules!
config = use_native_modules!
use_react_native!(
:path => config[:reactNativePath],
# to enable hermes on iOS, change `false` to `true` and then install pods
:hermes_enabled => false
)
target 'XXXXXTests' do
inherit! :complete
# Pods for testing
end
# Enables Flipper.
#
# Note that if you have use_frameworks! enabled, Flipper will not work and
# you should disable the next line.
use_flipper!({ 'Flipper-Folly' => '2.5.3', 'Flipper' => '0.87.0', 'Flipper-RSocket' => '1.3.1' })
post_install do |installer|
react_native_post_install(installer)
end
end
我已经尝试了很多次pod deintegrated 和安装pod。但它不起作用
对我来说,它是 Podfile(platform:ios, '11.0') 和 Xcode 项目文件
中的不同应用程序目标版本它导致 CI 管道中的存档作业失败。 匹配这两个值解决了一个问题!希望这对任何人都有帮助。