Skip to content

Commit

Permalink
Restore original Podfile
Browse files Browse the repository at this point in the history
  • Loading branch information
tomekzaw committed Feb 5, 2024
1 parent 834cfb8 commit c5024ac
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions example/ios/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,14 @@ prepare_react_native_project!
# dependencies: {
# ...(process.env.NO_FLIPPER ? { 'react-native-flipper': { platforms: { ios: null } } } : {}),
# ```
flipper_config = FlipperConfiguration.disabled
flipper_config = ENV['NO_FLIPPER'] == "1" ? FlipperConfiguration.disabled : FlipperConfiguration.enabled

linkage = ENV['USE_FRAMEWORKS']
if linkage != nil
Pod::UI.puts "Configuring Pod with #{linkage}ally linked Frameworks".green
use_frameworks! :linkage => linkage.to_sym
end

use_frameworks! :linkage => :static

target 'LiveMarkdownExample' do
config = use_native_modules!

Expand Down

0 comments on commit c5024ac

Please sign in to comment.