Skip to content

Commit

Permalink
Fix react-native-flipper iOS build fail
Browse files Browse the repository at this point in the history
Exclude react-native-flipper via react-native.config.js
since  it depends on FlipperKit
  • Loading branch information
leotm committed Aug 11, 2023
1 parent aff025e commit ff06275
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions react-native.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
// eslint-disable-next-line import/no-commonjs
module.exports = {
dependencies: {
...(process.env.NO_FLIPPER
? { 'react-native-flipper': { platforms: { ios: null } } }
: {}),
'react-native-aes-crypto-forked': {
platforms: {
ios: null, // disable Android platform, other platforms will still autolink if provided
Expand Down

0 comments on commit ff06275

Please sign in to comment.