无法解决project.pbxproj合并冲突

时间:2017-04-05 06:54:10

标签: ios xcode reactjs react-native

由于project.pbxproj文件中存在冲突,我无法执行react-native链接。我已经使用这个bash脚本删除了冲突,但仍然存在project.pbxproj文件的一些问题。

#!/bin/bash
FILE=project.pbxproj
sed '/======/d' $FILE | sed '/<<<<</d' | sed '/>>>>>/d' > temp
cat temp > $FILE
rm temp

我使用kin(https://github.com/Karumi/Kin)获得了此错误日志。

ERROR: line 257:204 mismatched input 'fileEncoding' expecting {'}', 'xcLanguageSpecificationIdentifier'}
ERROR: line 258:146 mismatched input 'fileEncoding' expecting {'}', 'xcLanguageSpecificationIdentifier'}
ERROR: line 259:137 mismatched input 'fileEncoding' expecting {'}', 'xcLanguageSpecificationIdentifier'}
ERROR: line 260:196 mismatched input 'fileEncoding' expecting {'}', 'xcLanguageSpecificationIdentifier'}
ERROR: line 261:143 mismatched input 'fileEncoding' expecting {'}', 'xcLanguageSpecificationIdentifier'}

这是我的project.pbxproj文件(https://gist.github.com/privateOmega/461cdf6dc586e9394aa9a68e94269cb9)。

由于

PS:我的构建配置是Ubuntu 14.04

0 个答案:

没有答案