... | @@ -12,7 +12,9 @@ Follow the Steps below to Implement the Reve Voice Android SDK for your own Dial |
... | @@ -12,7 +12,9 @@ Follow the Steps below to Implement the Reve Voice Android SDK for your own Dial |
|
UserInfo.setUsername(AppUI.getusername())
|
|
UserInfo.setUsername(AppUI.getusername())
|
|
UserInfo.setPassword(AppUI.getSipPassword())
|
|
UserInfo.setPassword(AppUI.getSipPassword())
|
|
```
|
|
```
|
|
**Step 4. Starting the Call Functionalities** At this stage The configuration of the App is complete. Now you can start to activate the functionalities of this sdk. You have to get an instance sipwrapper of the Class **SIPWrapper** and then call the function `sipwrapper.restartSIP(context: Context, appConfig:AppConfig)`. This method starts the components that lets you start/receive and end calls. Here context should be the default applicationContext and the appConfig is what you created in Step 2.
|
|
**Step 4. Starting the Call Functionalities** At this stage The configuration of the App is complete. Now you can start to activate the functionalities of this sdk. You have to get an instance sipwrapper of the Class **SIPWrapper** and then call the function `sipwrapper.restartSIP(context: Context, appConfig:AppConfig)`. This method starts the components that lets you start/receive and end calls. Here context should be the default applicationContext and the appConfig is what you created in **Step 2.**
|
|
If all the configuration is ok, this function will start the core components of this sdk. You have to make sure that you are using the exact configuration provided by Reve Systems. You call this method inside an activity or a service.
|
|
If all the configuration is ok, this function will start the core components of this sdk. You have to make sure that you are using the exact configuration provided by Reve Systems. You call this method inside an activity or a service.
|
|
|
|
|
|
**Step 5. Call Handling:** Check out the **[Call Handling guide](Call-Handling)** for Handling the calls using this sdk.
|
|
**Step 5. Call Handling:** Check out the **[Call Handling guide](Call-Handling)** for Handling the calls using this sdk.
|
|
|
|
|
|
|
|
**Step 6. Permission:** Make sure your app has permission to **record Audio**. Otherwise no audio data will be sent via this app. |