2017-02-19 5 views
0

react-native link react-native-vector-iconsreact-native link react-native-vector-icons RNVectorIconsのRCTLog.hにRedefintion of ...というエラーが表示されます。それはライブラリですか?)私のネイティブプロジェクトに反応するXcodeのエラー。これらのビルドエラーを修正するにはどうすればいいですか?react-native unlink react-native-vector-iconsを試しましたが、そのエラーはERR! It seems something went wrong while unlinking. Error: Cannot read property 'config' of undefinedなので、手動で修正する必要があります。コンテキストの場合Redefinition of ... ReactネイティブプロジェクトでRNVectorIconsをリンクした後のRCTLog.hのエラー

enter image description here

私は、@のshoutem/UIを使用してからエラーがネイティブ反応は見られないフォントを回避しようとしていました。

https://github.com/shoutem/ui/issues/95

答えて

0
githubのに問題にこの応答で答えを見つけ

https://github.com/shoutem/ui/issues/134

shoutem/UIとベクトルアイコンのリンクコマンドがために更新されていなかったように見える0.40を反応させます。手動で

#import "RCTBridge.h" 
#import "RCTViewManager.h" 
#import "RCTView.h" 

からこの

#import <React/RCTBridge.h> 
#import <React/RCTViewManager.h> 
#import <React/RCTView.h> 
に... BVLinearGradient用のライブラリでimport文を変更する必要があります
関連する問題