From 2b552fdaca2b89b3b02faf405774695e7022ec77 Mon Sep 17 00:00:00 2001 From: Rob Walker Date: Sat, 10 Feb 2024 11:42:53 +0000 Subject: [PATCH] chore: disable Flipper in example app (#170) * chore: disable Flipper in example app * chore: add changeset --- .changeset/eight-moons-share.md | 5 +++++ example/ios/Podfile | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 .changeset/eight-moons-share.md diff --git a/.changeset/eight-moons-share.md b/.changeset/eight-moons-share.md new file mode 100644 index 00000000..1a6ad2e0 --- /dev/null +++ b/.changeset/eight-moons-share.md @@ -0,0 +1,5 @@ +--- +'react-native-owl': patch +--- + +Disable Flipper on the example iOS app to allow for faster builds diff --git a/example/ios/Podfile b/example/ios/Podfile index 19013032..54244577 100644 --- a/example/ios/Podfile +++ b/example/ios/Podfile @@ -13,7 +13,8 @@ prepare_react_native_project! # dependencies: { # ...(process.env.NO_FLIPPER ? { 'react-native-flipper': { platforms: { ios: null } } } : {}), # ``` -flipper_config = ENV['NO_FLIPPER'] == "1" ? FlipperConfiguration.disabled : FlipperConfiguration.enabled +# flipper_config = ENV['NO_FLIPPER'] == "1" ? FlipperConfiguration.disabled : FlipperConfiguration.enabled +flipper_config = FlipperConfiguration.disabled linkage = ENV['USE_FRAMEWORKS'] if linkage != nil