Skip to content

Commit 3d45c01

Browse files
Merge pull request #296358 from lisaleehan/patch-6
Update manage-calls-android.md
2 parents 9dd4d4c + daa8b80 commit 3d45c01

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

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

Lines changed: 5 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
@@ -267,6 +267,8 @@ State can be one of
267267
> [!NOTE]
268268
> To use this API please use the Azure Communication Services Calling Android SDK version 2.11.0 or higher.
269269

270+
Now when a PSTN participant is muted, they should get an announcement that they have been muted and that they can press a key combination (e.g. *6) to unmute themselves. When they press *6, they should be unmuted.
271+
270272
To mute all other participants in a call, use the `muteAllRemoteParticipants` API on the call.
271273

272274
```java
@@ -296,7 +298,7 @@ call = callAgent.startCall(context, participants, options);
296298
startService(yourForegroundServiceIntent);
297299
```
298300

299-
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:
300302

301303
```java
302304
call.hangUp(new HangUpOptions()).get();

0 commit comments

Comments
 (0)