We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
RCT_IGNORE_PODS_DEPRECATION
pod install
1 parent ce0a4aa commit 45cbbfaCopy full SHA for 45cbbfa
packages/cli-config-apple/src/tools/installPods.ts
@@ -34,6 +34,7 @@ async function runPodInstall(loader: Ora, options?: RunPodInstallOptions) {
34
await execa('bundle', ['exec', 'pod', 'install'], {
35
env: {
36
RCT_NEW_ARCH_ENABLED: options?.newArchEnabled ? '1' : '0',
37
+ RCT_IGNORE_PODS_DEPRECATION: '1', // From React Native 0.79 onwards, users shouldn't install CocoaPods manually.
38
},
39
});
40
} catch (error) {
0 commit comments