Skip to content

Commit daa8b80

Browse files
Attempt to get Acrolinx > 80
1 parent a98887d commit daa8b80

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/communication-services/how-tos/calling-sdk/includes/manage-calls/manage-calls-android.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.author: rifox
1010
## Place a call
1111

1212
To create and start a call you need to call the `CallAgent.startCall()` method and provide the `Identifier` of the callee(s).
13-
To join a group call you need to call the `CallAgent.join()` method and provide the groupId. Group Ids must be in GUID or UUID format.
13+
To join a group call you need to call the `CallAgent.join()` method and provide the groupId. Group IDs must be in GUID or UUID format.
1414

1515
Call creation and start are synchronous. The call instance allows you to subscribe to all events on the call.
1616

@@ -176,7 +176,7 @@ call.unmute(appContext).get();
176176

177177
While you are in a call, the hardware volume keys on the phone should allow the user to change the call volume.
178178
This is done by using the method `setVolumeControlStream` with the stream type `AudioManager.STREAM_VOICE_CALL` on the Activity where the call is being placed.
179-
This allows the hardware volume keys to change the volume of the call (denoted by a phone icon or something similar on the volume slider), preventing to change the volume for other sound profiles, like alarms, media or system wide volume. For more information, you can check [Handling changes in audio output
179+
This allows the hardware volume keys to change the volume of the call (denoted by a phone icon or something similar on the volume slider), preventing changing the volume for other sound profiles, like alarms, media or system wide volume. For more information, you can check [Handling changes in audio output
180180
| Android Developers](https://developer.android.com/guide/topics/media-apps/volume-and-earphones).
181181

182182
```java
@@ -298,7 +298,7 @@ call = callAgent.startCall(context, participants, options);
298298
startService(yourForegroundServiceIntent);
299299
```
300300

301-
And stop the Foreground Service when you hangup the call or the call's status is Disconnected, for example:
301+
And stop the Foreground Service when you hang up the call or the call's status is Disconnected, for example:
302302

303303
```java
304304
call.hangUp(new HangUpOptions()).get();

0 commit comments

Comments
 (0)