Skip to content

Commit 2fb9471

Browse files
authored
Merge pull request #267831 from garchiro7/known-issues-native
Known issues native
2 parents 01eb087 + e71d639 commit 2fb9471

File tree

3 files changed

+283
-221
lines changed

3 files changed

+283
-221
lines changed
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
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+
The following sections provide information about known issues associated with the Azure Communication Services Calling Native and Native UI SDKs.
15+
16+
## Android API emulators
17+
18+
When utilizing Android API emulators on Android 5.0 (API level 21) and Android 5.1 (API level 22), some crashes are expected.
19+
20+
## Android Trouter module conflict
21+
22+
When the Android Chat and Calling SDK are together in the same application, Chat SDK's real-time notifications feature doesn't work. You might get a dependency resolving issue.
23+
24+
While we're 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.
25+
26+
**Java**
27+
```java
28+
implementation ("com.azure.android:azure-communication-chat:1.0.0") {
29+
exclude group: 'com.microsoft', module: 'trouter-client-android'
30+
}
31+
implementation 'com.azure.android:azure-communication-calling:1.0.0'
32+
```
33+
34+
Note: if the application tries to touch any of the notification APIs like `chatAsyncClient.startRealtimeNotifications()` or `chatAsyncClient.addEventHandler()`, there will be a runtime error.
35+
36+
## iOS ongoing video Picture in Picture (PiP)
37+
38+
Incoming video stops when app goes to background. If the application is in foreground the video renders correctly.
39+
40+
## UI Library
41+
42+
You can follow the known issues wiki page in the GitHub repositories.
43+
44+
- [Android](https://github.com/Azure/communication-ui-library-android/wiki/Known-Issues-Calling)
45+
- [iOS](https://github.com/Azure/communication-ui-library-ios/wiki/Known-Issues-Calling)

0 commit comments

Comments
 (0)