Skip to content

Commit 057e631

Browse files
committed
Initial known issues for calling native
1 parent 0d1ea50 commit 057e631

File tree

3 files changed

+278
-221
lines changed

3 files changed

+278
-221
lines changed
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
---
2+
title: Azure Communication Services - known issues
3+
description: Learn more about Azure Communication Services known issues on Calling SDK
4+
author: garchiro7
5+
manager: chpalmer
6+
services: azure-communication-services
7+
8+
ms.author: jorgarcia
9+
ms.date: 02/08/2024
10+
ms.topic: include
11+
ms.service: azure-communication-services
12+
---
13+
14+
## Android API emulators
15+
When utilizing Android API emulators on Android 5.0 (API level 21) and Android 5.1 (API level 22), some crashes are expected.
16+
17+
## Android Trouter module conflict
18+
Known issue: When using Android Chat and Calling SDK together in the same application, Chat SDK's real-time notifications feature does not work. You might get a dependency resolving issue.
19+
20+
While we are working on a solution, you can turn off real-time notifications feature by adding the following dependency information in app's build.gradle file and instead poll the GetMessages API to display incoming messages to users.
21+
22+
**Java**
23+
```java
24+
implementation ("com.azure.android:azure-communication-chat:1.0.0") {
25+
exclude group: 'com.microsoft', module: 'trouter-client-android'
26+
}
27+
implementation 'com.azure.android:azure-communication-calling:1.0.0'
28+
```
29+
30+
Note with above update, if the application tries to touch any of the notification API like `chatAsyncClient.startRealtimeNotifications()` or `chatAsyncClient.addEventHandler()`, there will be a runtime error.
31+
32+
## iOS ongoing video Picture in Picture (PiP)
33+
34+
- Incomming video stops when app goes to background. If the application is in foreground the video renders correctly.
35+
36+
## UI Library
37+
38+
You can follow the known issues wiki page in the GitHub repositories.
39+
40+
- [Android](https://github.com/Azure/communication-ui-library-android/wiki/Known-Issues-Calling)
41+
- [iOS](https://github.com/Azure/communication-ui-library-ios/wiki/Known-Issues-Calling)

0 commit comments

Comments
 (0)