[!] Invalid Podfile file: no implicit conversion of nil into String.

Tags
ios

문제

notion image
# 문제되는 코드 use_react_native!(:path => config["reactNativePath"])

해결방안

 
notion image
# before use_react_native!(:path => config["reactNativePath"]) # after use_react_native!(:path => config[:reactNativePath])
"reactNativePath":reactNativePath으로 바꿔주면 된다.