rn-sip-app
rn-sip-app copied to clipboard
React Native SIP App
Open-source React Native SIP client for Android & iOS
Based on React Native and ReactNativePJSIP
Setup
1. Clone the repo:
$ git clone https://github.com/tariq86/rn-sip-app
$ cd rn-sip-app
2. Install dependencies:
$ npm install
2.1 (Optional - iOS only) Fix warnings
If you want to fix the yellow warnings that pop up when first opening the app, you'll need to perform the following module edits in XCode:
RNCallKit Module
- In the Project Navigator, open
Libraries>RNCallKit.xcodeproj>RNCallKit>RNCallKit.m - Add the following code right after the close of the
(instancetype)initfunction closing bracket (around line 52):
+ (BOOL)requiresMainQueueSetup
{
return NO;
}
Note: This change requires a full recompile of the app, so you will need to re-run the npm run ios command if the app is already running
3. Running on Android:
To run on Android, you can run either npm run android (recommended) or react-native run-android from the project root directory.
Note: I haven't tested on Android yet, so I cannot guarantee that it works!
4. Running on iOS:
To run on iOS, you can call either npm run ios (recommended) or react-native run-ios from the project root directory.