mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2025-12-30 03:12:29 +00:00
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.
13 lines
309 B
JavaScript
13 lines
309 B
JavaScript
/**
|
|
* 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'
|
|
}
|
|
}
|
|
};
|