문제

error: no visible @interface for 'RCTBundleURLProvider' declares the selector 'jsBundleURLForBundleRoot:fallbackResource:'
해결방안
AppDelegate.m
파일에서 발생한 문제이고, 여기 코드를 조금 고쳐주면 된다.몇년만에 버전을 확 올렸더니 고칠 게 많았다.


# 수정 전 return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index" fallbackResource:nil]; # 수정 후 return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index"];
fallbackResource
부분을 제거하면 된다.