Я установил push-код в проекте React Native на XCode.
#ifdef DEBUG
jsCodeLocation = [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index" fallbackResource:nil];
#else
jsCodeLocation = [CodePush bundleURL];
#endif
Теперь я хочу сгенерировать jsbundle и построить проект на устройстве IOS.
Но я обнаружил, что jsCodeLocation
дублируется.
#ifdef DEBUG
jsCodeLocation = [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index.ios" fallbackResource:nil];
#else
jsCodeLocation = [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"];
#endif
Я запутался с этим, как я могу объединить jsCodeLocation?
Я не знаком с Objective-c.
Любая помощьбыл бы признателен.