Skip to content

Commit

Permalink
bug fix 2.12.11
Browse files Browse the repository at this point in the history
  • Loading branch information
manzick committed Sep 11, 2024
1 parent 443755a commit 7242ee3
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
Binary file modified CarrotSDK.xcframework.zip
Binary file not shown.
18 changes: 15 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Carrot quest для iOS

![Version](https://img.shields.io/static/v1?label=Version&message=2.12.9&color=brightgreen)
![Version](https://img.shields.io/static/v1?label=Version&message=2.12.11&color=brightgreen)

## Содержание

Expand All @@ -23,6 +23,7 @@
- [Чат с оператором](#chat_objc)
- [Открытие ссылок вручную](#custom_url_opener_objc)
- [Уведомления](#notif_objc)
- [Важная информация о Push уведомлениях](#important_push)
- [Дублирование уведомлений и статистика доставленных пушей](#notif_extension)
- [Локализация](#localization)
- [Xcode 15](#xcode15)
Expand Down Expand Up @@ -301,8 +302,6 @@ extension AppDelegate: UNUserNotificationCenterDelegate {
}
```

<a name="init_objc"></a>

# Objective-C

<a name="init_objc"></a>
Expand Down Expand Up @@ -600,6 +599,19 @@ didReceiveNotificationResponse:(UNNotificationResponse *)response

Подробнее о том, зачем нужен пункт openLink можно почитать [тут](#Push+link).

<a name="important_push"></a>

## Важная информация о Push уведомлениях

Необходимо добавить в info.plist вашего проекта параметр:

```xml
<key>FirebaseAppDelegateProxyEnabled</key>
<string>0</string>
```

И обязательно, убедиться, что поле имеет значение string. Если кратко, то это переключает управление уведолмениями в ручной режим и позволяет SDK правильно функционировать. Подробнее можете почитать [тут](https://firebase.google.com/docs/cloud-messaging/ios/client?hl=ru).

<a name="notif_extension"></a>

## Дублирование уведомлений и статистика доставленных пушей
Expand Down

0 comments on commit 7242ee3

Please sign in to comment.