Issue with the new Zoom Meeting SDK for @zoom/meetingsdk-react-native

Description
I just bootstrapped a new project with these version :
react-native 0.75.3

react 18.3.1
node 20.14.0
npm v10.7.0

I downloaded zoom-sdk-ios-6.1.5.16935.zip and zoom-sdk-android-6.1.5.16935.zip and copied MobileRTC.xcframework and MobileRTCResources.bundle in ios repo , and mobilertc.aar in anroid repo. added audio and video plugins to info.plist

I wanted to test the new zoom react-native wrapper
I am totally new with react-native and meeting zoom. The project is building successfully and can run it on iphone SE 3rd generation IOS 17.
I wrapped the whole project with the zoomProvider using a working JWT.
When I try to join the meeting, nothing happen :

const onPress = async () => {
try {
const res = await zoom.joinMeeting({
userName: ‘chiheb’,
meetingNumber: ‘XXXXXXXXXX’,
password: ‘’,
});
console.log({ res });
} catch (error) {
console.error(‘Error joining the meeting:’, error);
}
};

I got res : undefined in the console, so it didn’t throw to the error. How could I investigate the issue here please.
And do you have a working sample project where I can run this new package succesfully ?

Which iOS Meeting SDK version?
Knowing the version can help us to identify your issue faster.
zoom-sdk-ios-6.1.5.16935

Troubleshooting Routes

Smartphone (please complete the following information):

  • Device: iPhone SE (3rd generation)
  • OS: iOS 17.5

Hey, I am facing the same issue. Have you been able to resolve it? If yes, please help me with the integration.

**"Hey, if you’re facing the issue No matching variant of project :mobilertc was found. while using @zoom/meetingsdk-react-native, I have a solution for you!

When you download meetingsdk-react-native-6.2.10 from the Zoom Marketplace for React Native, the mobilertc folder inside example/android/ is empty.

To fix this, you need to separately download the Android Meeting SDK from Zoom Marketplace. Inside that, you’ll find a mobilertc folder containing mobilertc.aar and another required file. Copy this entire mobilertc folder into your app’s android/ directory.

Make sure to follow all the integration steps mentioned in the official Zoom documentation:
[Zoom Meeting SDK Documentation for React Native]

hi. im a bit confused here as well. im using version 6.4.1

after adding relevant files to the ios folder, i added them to the project by opening the project file in xcode and then using “add file”.

then for android i added files but then you need to modify the settings.gradle and other gradle files, right?

anyway i cannot get it to run on my android simulator. or ios simulator.