Description
Hi there,
I'm stuck for quite some time now. I can't seem to Archive my project via Xcode. When I do I get the following errors:
The strange thing is that running a Build of the project doesn't give any errors or problems.
I've already tried almost everything I can find on the internet, but like I said; I'm stuck. :(
I'm using react native with a Podfile which looks as following:
platform :ios, '11.0'
target 'Project' do
pod 'React', :path => '../node_modules/react-native/'
pod 'yoga', :path => '../node_modules/react-native/ReactCommon/yoga'
pod 'DoubleConversion', :podspec => '../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec'
pod 'glog', :podspec => '../node_modules/react-native/third-party-podspecs/glog.podspec'
pod 'Folly', :podspec => '../node_modules/react-native/third-party-podspecs/Folly.podspec'
pod 'RNCAsyncStorage', :path => '../node_modules/@react-native-community/async-storage'
pod 'react-native-splash-screen', :path => '../node_modules/react-native-splash-screen'
post_install do |installer|
installer.pods_project.targets.each do |target|
targets_to_ignore = %w(React yoga)
if targets_to_ignore.include? target.name
target.remove_from_project
end
end
end
target 'ProjectTests' do
inherit! :search_paths
# Pods for testing
end
end
And this are the linked libraries via Xcode:
The problem seems to be there since I've added the Podfile. I didn't archive for a while, but before I used the Podfile and all Libraries where linked via Xcode there was no problem archiving (but then I experienced issues with adding custom libraries).
React Native version:
React Native Environment Info:
System:
OS: macOS 10.14.5
CPU: (4) x64 Intel(R) Core(TM) i5-7360U CPU @ 2.30GHz
Memory: 51.95 MB / 8.00 GB
Shell: 5.3 - /bin/zsh
Binaries:
Node: 10.11.0 - ~/.nvm/versions/node/v10.11.0/bin/node
Yarn: 1.10.1 - /usr/local/bin/yarn
npm: 6.4.1 - ~/.nvm/versions/node/v10.11.0/bin/npm
Watchman: 4.9.0 - /usr/local/bin/watchman
SDKs:
iOS SDK:
Platforms: iOS 12.2, macOS 10.14, tvOS 12.2, watchOS 5.2
Android SDK:
API Levels: 23, 26, 28, 29
Build Tools: 28.0.3, 29.0.0
System Images: android-29 | Google APIs Intel x86 Atom
IDEs:
Android Studio: 3.4 AI-183.6156.11.34.5522156
Xcode: 10.2.1/10E1001 - /usr/bin/xcodebuild
npmPackages:
react: 16.8.3 => 16.8.3
react-native: 0.59.9 => 0.59.9
npmGlobalPackages:
react-native-cli: 2.0.1
Steps To Reproduce
cd ios
&pod clean
&pod install
- open
.xcworkspace
- Select TEST scheme (with
react-native-scheme-manager
) - Clean build folder with
cmd + shift + k
- Run project on iPhone 8, connected device (no errors)
- Archive project (error as above)
Furthermore I've also tried different solutions like deleting all libraries via Xcode "Linked Framework and Libraries" and manually adding them via Pods like in this issue: #20492
Because it is only on Archiving I'm thinking it has something to do with minifying. Is this even possible? Or any other suggestions? Thanks in advance for the help!