From 2d6a24a36d072c09d1ee8dedb087490805d097c3 Mon Sep 17 00:00:00 2001 From: Kudo Chien Date: Thu, 2 Feb 2023 12:59:44 +0800 Subject: [PATCH] Enable ios autolinking only on debug build --- react-native/react-native-flipper/react-native.config.js | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 react-native/react-native-flipper/react-native.config.js diff --git a/react-native/react-native-flipper/react-native.config.js b/react-native/react-native-flipper/react-native.config.js new file mode 100644 index 00000000000..c17dac0be01 --- /dev/null +++ b/react-native/react-native-flipper/react-native.config.js @@ -0,0 +1,9 @@ +module.exports = { + dependency: { + platforms: { + ios: { + configurations: ['Debug'], + }, + }, + }, +};