[Problem/Question]
Hello, I’m experiencing an issue where my app consistently crashes when calling SendbirdCalls.initialize(APP_ID)
after installing @sendbird/calls-react-native. The app runs normally if I comment out the SendbirdCalls.initialize line, but it crashes immediately when this function is called.
I’ve attempted several troubleshooting steps, including:
- Deleting and reinstalling node_modules, ios, and android folders
- Reinstalling the @sendbird/calls-react-native package
- Installing an older version (“@sendbird/calls-react-native”: “^1.1.3”)
However, the problem persists. I would greatly appreciate any assistance in resolving this issue.
// If problem, please fill out the below. If question, please delete.
[SDK Version]
// What version of the SDK are you using?
"expo": "~52.0.36",
"react": "18.3.1",
"react-native": "^0.76.7",
"@sendbird/calls-react-native": "^1.1.5",
[Reproduction Steps]
// App.tsx
import React from 'react';
import { Platform } from 'react-native';
import { StatusBar } from 'expo-status-bar';
import { SendbirdCalls, SoundType } from '@sendbird/calls-react-native';
SendbirdCalls.initialize(process.env.EXPO_PUBLIC_SENDBIRD_APP_ID);
// other code...
[Frequency]
// How frequently is this issue occurring?
- This issue occurs every time the app is launched.
[Current impact]
// How is this currently impacting your implementation?
- Development of Sendbird Calls functionality has been halted due to this issue.