개발, 코딩/App - React Native
react-native, pod install - The following Swift pods cannot yet be integrated as static libraries
Websterking
2022. 9. 5. 12:23
반응형
Cocoapods version 1.9+ allows linking of Swift static libraries, add the following command to your Podfile:
use_frameworks! :linkage => :static
전체 코드르 확인
require_relative '../node_modules/react-native/scripts/react_native_pods'
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
use_frameworks! :linkage => :static
platform :ios, '12.4'
install! 'cocoapods', :deterministic_uuids => false
target 'testApp' do
end
반응형