This is the error that i am getting when building the app.
I am getting this error after upgrading my react-native version from 0.66.2 to 0.68.2 in my Appdelegate.mm file.
This is the error that i am getting when building the app.
I am getting this error after upgrading my react-native version from 0.66.2 to 0.68.2 in my Appdelegate.mm file.
After some research i found out that jsBundleURLForBundleRoot:fallbackResource: no longer exists on RCTBundleURLProvider.
Here's the Fix:
Replace
return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index" fallbackResource:nil];
with
return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index"];
Re-Build the app and you are good to go.