feat(rn) update React Native to version 0.63

I'm updating to RN 0.63 instead of the latest (0.66 at the time of this writing)
so we can update the navigation related libraries to their latest versions, and
then proceed with the larger leap towards the latest RN.
This commit is contained in:
Saúl Ibarra Corretgé
2022-01-06 13:48:08 +01:00
committed by Saúl Ibarra Corretgé
parent fe2f97b15d
commit 90321ca016
15 changed files with 3638 additions and 4642 deletions

12
react-native.config.js Normal file
View File

@@ -0,0 +1,12 @@
/**
* This is needed because the RN cli incorrectly detects the iOS app path as
* jitsi-meet/ios/app and thus all pod references in the now dynamically generated
* Podfile are wrong.
*/
module.exports = {
project: {
ios: {
project: '.ios/jitsi-meet.xcworkspace'
}
}
};