Skip to content

Commit

Permalink
dep(react-native): update to 0.75.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Calinteodor committed Oct 29, 2024
1 parent b562176 commit e47716b
Show file tree
Hide file tree
Showing 10 changed files with 3,027 additions and 2,725 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ DerivedData
*.dSYM.zip
*.xcuserstate
project.xcworkspace
**/.xcode.env.local

# Android/IntelliJ
#
Expand Down
3 changes: 2 additions & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,9 @@ ext {
targetSdkVersion = 34
supportLibVersion = "28.0.0"

// NDK is now entirely compatible with Apple Silicon M1 and M2 Macs as of version 24.0.
// We use NDK 23 which has both M1 support and is the side-by-side NDK version from AGP.
ndkVersion = "23.1.7779620"
ndkVersion = "26.1.10909125"

// The Maven artifact groupId of the third-party react-native modules which
// Jitsi Meet SDK for Android depends on and which are not available in
Expand Down
9 changes: 8 additions & 1 deletion babel.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,12 @@ module.exports = {
plugins: [ 'react-native-paper/babel' ]
}
},
plugins: [ 'optional-require' ]

// This happens because react native has conflict with @babel/plugin-transform-private-methods plugin
// https://github.com/ethers-io/ethers.js/discussions/4309#discussioncomment-6694524
plugins: [ 'optional-require',
[ '@babel/plugin-transform-private-methods', {
'loose': true
} ]
]
};
Loading

0 comments on commit e47716b

Please sign in to comment.