ably / ably-flutter

A wrapper around our Cocoa and Java client library SDKs, providing iOS and Android support for those using Flutter and Dart.
https://ably.com/download
Apache License 2.0
60 stars 16 forks source link

Compatibility with Firebase Messaging #226

Open ben-xD opened 2 years ago

ben-xD commented 2 years ago

Problem

There may be compatibility issues with Firebase Messaging and Ably Flutter, now that we handle push notifications in the native side and send them to the Dart side for users to handle them in their flutter application without writing native code. We should investigate to what extent issues exist, and to fix it, if necessary.

Incompatibility might show up in either Ably Flutter or Firebase Messaging not receiving push notifications when they should, errors being logged or app crashes.

When a flutter package plugin (containing iOS/Android) code is installed in an application, there is native code that always run, regardless of the Flutter application code.

Potential high level approaches:

Some investigation: specific issues

Merely having firebase_messaging in pubspec.yaml will cause issues:

iOS issues

Android issues

Running firebase_messaging code.

More investigation needed to see if firebase_messaging handlers are also broken, and if any further features are broken in Ably Flutter if Dart code inside firebase_messaging is ran.

┆Issue is synchronized with this Jira Story by Unito

Bhupesh-V commented 2 years ago

Hey, We are using firebase_messaging and ably together and facing issues as described above.

Version: firebase_messaging - 10.0.5 ably_flutter - 1.2.8

Error Trace from Flutter

I/zygote  (13606): Thread[3,tid=13612,WaitingInMainSignalCatcherLoop,Thread*=0xa874ec00,peer=0x12d80328,"Signal Catcher"]: reacting to signal 3
I/zygote  (13606): 
I/zygote  (13606): Wrote stack traces to '[tombstoned]'

This happens after a few seconds we receive a push notification through firebase. Below is the ANR

ANR from adb through adb -s emulator-5556 logcat ActivityManager:E *:S

01-06 19:51:57.910  7430  7444 E ActivityManager: ANR in com.creatorstack.commune.preprod
01-06 19:51:57.910  7430  7444 E ActivityManager: PID: 13606
01-06 19:51:57.910  7430  7444 E ActivityManager: Reason: Broadcast of Intent { act=com.google.android.c2dm.intent.RECEIVE flg=0x1000010 pkg=com.creatorstack.commune.preprod cmp=com.creatorstack.commune.preprod/io.ably.flutter.plugin.push.FirebaseMessagingReceiver (has extras) }

flutter doctor -v

[✓] Flutter (Channel stable, 2.2.3, on macOS 11.3.1 20E241 darwin-x64, locale en-IN)
    • Flutter version 2.2.3 at /Users/cs/flutter
    • Framework revision f4abaa0735 (6 months ago), 2021-07-01 12:46:11 -0700
    • Engine revision 241c87ad80
    • Dart version 2.13.4

[✓] Android toolchain - develop for Android devices (Android SDK version 31.0.0)
    • Android SDK at /Users/cs/Library/Android/sdk
    • Platform android-31, build-tools 31.0.0
    • Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java
    • Java version OpenJDK Runtime Environment (build 11.0.8+10-b944.6916264)
    • All Android licenses accepted.

[✓] Xcode - develop for iOS and macOS
    • Xcode at /Applications/Xcode.app/Contents/Developer
    • Xcode 12.5.1, Build version 12E507
    • CocoaPods version 1.10.1

[✗] Chrome - develop for the web (Cannot find Chrome executable at /Applications/Google Chrome.app/Contents/MacOS/Google Chrome)
    ! Cannot find Chrome. Try setting CHROME_EXECUTABLE to a Chrome executable.

[✓] Android Studio (version 4.2)
    • Android Studio at /Applications/Android Studio.app/Contents
    • Flutter plugin can be installed from:
      🔨 https://plugins.jetbrains.com/plugin/9212-flutter
    • Dart plugin can be installed from:
      🔨 https://plugins.jetbrains.com/plugin/6351-dart
    • Java version OpenJDK Runtime Environment (build 11.0.8+10-b944.6916264)

[✓] IntelliJ IDEA Ultimate Edition (version 2021.2.3)
    • IntelliJ at /Applications/IntelliJ IDEA.app
    • Flutter plugin can be installed from:
      🔨 https://plugins.jetbrains.com/plugin/9212-flutter
    • Dart plugin can be installed from:
      🔨 https://plugins.jetbrains.com/plugin/6351-dart

[✓] VS Code (version 1.63.2)
    • VS Code at /Applications/Visual Studio Code.app/Contents
    • Flutter extension version 3.32.0

[✓] Connected device (1 available)
    • Android SDK built for x86 (mobile) • emulator-5556 • android-x86 • Android 8.1.0 (API 27) (emulator)

! Doctor found issues in 1 category.

Here is a crashlytics log trace

Screenshot 2022-01-06 at 7 58 42 PM
neelansh-creatorstack commented 2 years ago

Adding this to the AndroidManifest of your project disables the notification receiver from ably plugin.

<receiver android:name="io.ably.flutter.plugin.push.FirebaseMessagingReceiver"
        tools:node="remove">
</receiver>

Hope this helps.

Bhupesh-V commented 2 years ago

Adding this to the AndroidManifest of your project disables the notification receiver from ably plugin.

<receiver android:name="io.ably.flutter.plugin.push.FirebaseMessagingReceiver"
        tools:node="remove">
</receiver>

Hope this helps.

Thanks this fixed it 🙌🏽

vdjurdjevic commented 2 years ago

I also have a problem with iOS with the onMessage handler not being invoked. Tried everything... Push setup is ok, I see that the device is in an Active state in the Ably dashboard, notification is displayed when the phone is locked (sleeping), but when the app is in the foreground, the onMessage handler is never invoked. Android works fine. We don't have firebase_messaging dependency. It was present a long time ago when the initial setup for the app was created, but we removed it before installing ably. Now I am not sure if something is left over that still causes the issue. Any ideas?

Asharulislam commented 2 years ago

Got this error when I add this:

<receiver android:name="io.ably.flutter.plugin.push.FirebaseMessagingReceiver" tools:node="remove">

FAILURE: Build failed with an exception.

ikurek commented 2 years ago

@Asharulislam Do you have the xmlns:tools="http://schemas.android.com/tools" namespace in the Android manifest?

Asharulislam commented 2 years ago

here is my manifest

<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.appiskey.dang.dev">

<uses-permission android:name="android.permission.INTERNET"/>

<!-- Permissions options for the `location` group -->
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_BACKGROUND_LOCATION" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />

<application android:label="Dang" android:icon="@mipmap/ic_launcher" android:allowBackup="false"> <activity android:name=".MainActivity" android:launchMode="singleTop" android:theme="@style/LaunchTheme" android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode" android:hardwareAccelerated="true" android:showWhenLocked="true" android:turnScreenOn="true" android:windowSoftInputMode="adjustResize">

        <receiver android:name="io.ably.flutter.plugin.push.FirebaseMessagingReceiver"
            tools:node="remove">
        </receiver>

         <meta-data
          android:name="com.google.firebase.messaging.default_notification_channel_id"
          android:value="FCM_CHANNEL" />

        <meta-data
          android:name="io.flutter.embedding.android.NormalTheme"
          android:resource="@style/NormalTheme"
          />
        <!-- Displays an Android View that continues showing the launch screen
             Drawable until Flutter paints its first frame, then this splash
             screen fades out. A splash screen is useful to avoid any visual
             gap between the end of Android's launch screen and the painting of
             Flutter's first frame. -->
        <meta-data
          android:name="io.flutter.embedding.android.SplashScreenDrawable"
          android:resource="@drawable/launch_background"
          />
        <intent-filter>
            <action android:name="FLUTTER_NOTIFICATION_CLICK"/>
            <category android:name="android.intent.category.DEFAULT"/>
        </intent-filter>
        <intent-filter>
            <action android:name="android.intent.action.MAIN"/>
            <category android:name="android.intent.category.LAUNCHER"/>
        </intent-filter>
    </activity>
    <!-- Don't delete the meta-data below.
         This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
    <meta-data
        android:name="flutterEmbedding"
        android:value="2" />
</application>

ikurek commented 2 years ago

@Asharulislam You should have the <manifest> block at the beggining of the XML file, with namespaces configured, something like this:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        package="your pacakage name">
Asharulislam commented 2 years ago

Thanks alot @ikurek

onMessage also not receiving data on IOS only is there any solution yet?

ikurek commented 2 years ago

@Asharulislam Please open an issue with more details, so someone from our team can investigate

Asharulislam commented 2 years ago

IOS forground notification not triggered if I am using flutter messaging and Ably package both Android issue is resolved by adding block of code in manifest file.

gabrielginter commented 2 years ago

It seems the issue has escalated and now my app crashes in iOS when tapping on notifications and the cause seems to be ably.

I'm using: Flutter: 3.0.3 ably_flutter: 1.2.14 firebase_core: 1.18.0 firebase_messaging: 11.4.2

Flutter doctor:

Doctor summary (to see all details, run flutter doctor -v):
[✓] Flutter (Channel stable, 3.0.3, on macOS 12.4 21F79 darwin-x64, locale en-US)
[✓] Android toolchain - develop for Android devices (Android SDK version 32.1.0-rc1)
[✓] Xcode - develop for iOS and macOS (Xcode 13.4.1)
[✓] Android Studio (version 2021.2)
[✓] Connected device (2 available)
[✓] HTTP Host Availability

• No issues found!

This crash happens when you tap on the notification to open the app, when the app is either in the background or closed. I haven't tested android yet.

Crash report (expand) ``` Incident Identifier: E44A011B-CCB1-4CFF-8B07-F02BDCAF0483 Hardware Model: iPhone13,1 Process: Runner [13351] Path: /private/var/containers/Bundle/Application/F68B72BA-232E-4467-A4BE-B66FC2297A3F/Runner.app/Runner Identifier: com.MySuperCoolApp Version: 3.16.1 (3.16.1) AppStoreTools: 13F100 AppVariant: 1:iPhone13,1:15 Beta: YES Code Type: ARM-64 (Native) Role: Foreground Parent Process: launchd [1] Coalition: com.MySuperCoolApp [1073] Date/Time: 2022-06-21 22:07:34.8982 +1000 Launch Time: 2022-06-21 21:48:03.3384 +1000 OS Version: iPhone OS 15.5 (19F77) Release Type: User Baseband Version: 2.54.02 Report Version: 104 Exception Type: EXC_BAD_ACCESS (SIGSEGV) Exception Subtype: KERN_PROTECTION_FAILURE at 0x000000016fa27fe0 Exception Codes: 0x0000000000000002, 0x000000016fa27fe0 VM Region Info: 0x16fa27fe0 is in 0x16fa24000-0x16fa28000; bytes after start: 16352 bytes before end: 31 REGION TYPE START - END [ VSIZE] PRT/MAX SHRMOD REGION DETAIL MALLOC_TINY 141000000-141100000 [ 1024K] rw-/rwx SM=PRV GAP OF 0x2e924000 BYTES ---> STACK GUARD 16fa24000-16fa28000 [ 16K] ---/rwx SM=NUL ... for thread 0 Stack 16fa28000-16fb24000 [ 1008K] rw-/rwx SM=PRV thread 0 Exception Note: EXC_CORPSE_NOTIFY Termination Reason: SIGNAL 11 Segmentation fault: 11 Terminating Process: exc handler [13351] Triggered by Thread: 0 Kernel Triage: VM - pmap_enter failed with resource shortage VM - pmap_enter failed with resource shortage VM - pmap_enter failed with resource shortage VM - pmap_enter failed with resource shortage Thread 0 name: Thread 0 Crashed: 0 libsystem_malloc.dylib 0x00000001927c4f8c _malloc_zone_malloc + 4 (malloc.c:1596) 1 CoreFoundation 0x00000001804d7408 __CFStrAllocateMutableContents + 100 (CFString.c:503) 2 CoreFoundation 0x00000001804c6f48 __CFStringChangeSizeMultiple + 656 (CFString.c:1089) 3 CoreFoundation 0x00000001804bb87c __CFStringAppendBytes + 672 (CFString.c:1149) 4 CoreFoundation 0x00000001804a16a8 __CFStringAppendFormatCore + 9868 (CFString.c:0) 5 CoreFoundation 0x00000001804c098c _CFStringCreateWithFormatAndArgumentsReturningMetadata + 176 (CFString.c:1958) 6 Foundation 0x0000000181ca5f30 +[NSString stringWithFormat:] + 76 (NSString.m:232) 7 ably_flutter 0x0000000104d863f4 +[AblyFlutterWriter getEncoder:] + 112 (AblyFlutterWriter.m:60) 8 ably_flutter 0x0000000104d869a4 -[AblyFlutterWriter writeValue:] + 160 (AblyFlutterWriter.m:82) 9 Flutter 0x00000001057ed300 0x105290000 + 5624576 10 Flutter 0x00000001057ea1b4 0x105290000 + 5611956 11 ably_flutter 0x0000000104d93098 specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 276 (PushNotificationEventHandlers.swift:34) 12 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 13 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 14 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 15 Flutter 0x00000001052afa40 0x105290000 + 129600 16 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 17 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 18 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 19 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 20 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 21 Flutter 0x00000001052afa40 0x105290000 + 129600 22 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 23 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 24 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 25 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 26 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 27 Flutter 0x00000001052afa40 0x105290000 + 129600 28 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 29 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 30 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 31 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 32 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 33 Flutter 0x00000001052afa40 0x105290000 + 129600 34 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 35 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 36 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 37 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 38 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 39 Flutter 0x00000001052afa40 0x105290000 + 129600 40 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 41 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 42 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 43 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 44 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 45 Flutter 0x00000001052afa40 0x105290000 + 129600 46 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 47 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 48 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 49 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 50 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 51 Flutter 0x00000001052afa40 0x105290000 + 129600 52 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 53 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 54 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 55 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 56 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 57 Flutter 0x00000001052afa40 0x105290000 + 129600 58 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 59 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 60 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 61 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 62 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 63 Flutter 0x00000001052afa40 0x105290000 + 129600 64 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 65 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 66 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 67 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 68 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 69 Flutter 0x00000001052afa40 0x105290000 + 129600 70 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 71 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 72 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 73 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 74 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 75 Flutter 0x00000001052afa40 0x105290000 + 129600 76 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 77 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 78 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 79 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 80 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 81 Flutter 0x00000001052afa40 0x105290000 + 129600 82 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 83 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 84 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 85 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 86 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 87 Flutter 0x00000001052afa40 0x105290000 + 129600 88 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 89 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 90 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 91 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 92 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 93 Flutter 0x00000001052afa40 0x105290000 + 129600 94 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 95 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 96 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 97 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 98 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 99 Flutter 0x00000001052afa40 0x105290000 + 129600 100 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 101 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 102 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 103 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 104 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 105 Flutter 0x00000001052afa40 0x105290000 + 129600 106 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 107 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 108 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 109 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 110 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 111 Flutter 0x00000001052afa40 0x105290000 + 129600 112 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 113 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 114 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 115 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 116 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 117 Flutter 0x00000001052afa40 0x105290000 + 129600 118 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 119 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 120 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 121 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 122 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 123 Flutter 0x00000001052afa40 0x105290000 + 129600 124 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 125 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 126 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 127 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 128 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 129 Flutter 0x00000001052afa40 0x105290000 + 129600 130 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 131 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 132 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 133 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 134 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 135 Flutter 0x00000001052afa40 0x105290000 + 129600 136 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 137 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 138 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 139 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 140 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 141 Flutter 0x00000001052afa40 0x105290000 + 129600 142 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 143 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 144 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 145 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 146 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 147 Flutter 0x00000001052afa40 0x105290000 + 129600 148 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 149 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 150 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 151 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 152 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 153 Flutter 0x00000001052afa40 0x105290000 + 129600 154 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 155 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 156 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 157 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 158 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 159 Flutter 0x00000001052afa40 0x105290000 + 129600 160 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 161 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 162 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 163 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 164 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 165 Flutter 0x00000001052afa40 0x105290000 + 129600 166 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 167 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 168 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 169 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 170 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 171 Flutter 0x00000001052afa40 0x105290000 + 129600 172 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 173 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 174 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 175 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 176 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 177 Flutter 0x00000001052afa40 0x105290000 + 129600 178 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 179 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 180 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 181 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 182 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 183 Flutter 0x00000001052afa40 0x105290000 + 129600 184 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 185 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 186 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 187 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 188 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 189 Flutter 0x00000001052afa40 0x105290000 + 129600 190 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 191 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 192 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 193 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 194 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 195 Flutter 0x00000001052afa40 0x105290000 + 129600 196 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 197 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 198 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 199 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 200 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 201 Flutter 0x00000001052afa40 0x105290000 + 129600 202 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 203 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 204 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 205 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 206 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 207 Flutter 0x00000001052afa40 0x105290000 + 129600 208 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 209 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 210 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 211 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 212 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 213 Flutter 0x00000001052afa40 0x105290000 + 129600 214 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 215 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 216 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 217 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 218 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 219 Flutter 0x00000001052afa40 0x105290000 + 129600 220 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 221 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 222 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 223 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 224 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 225 Flutter 0x00000001052afa40 0x105290000 + 129600 226 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 227 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 228 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 229 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 230 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 231 Flutter 0x00000001052afa40 0x105290000 + 129600 232 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 233 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 234 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 235 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 236 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 237 Flutter 0x00000001052afa40 0x105290000 + 129600 238 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 239 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 240 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 241 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 242 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 243 Flutter 0x00000001052afa40 0x105290000 + 129600 244 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 245 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 246 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 247 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 248 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 249 Flutter 0x00000001052afa40 0x105290000 + 129600 250 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 251 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 252 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 253 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 254 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 255 Flutter 0x00000001052afa40 0x105290000 + 129600 256 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 257 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 258 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 259 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 260 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 261 Flutter 0x00000001052afa40 0x105290000 + 129600 262 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 263 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 264 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 265 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 266 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 267 Flutter 0x00000001052afa40 0x105290000 + 129600 268 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 269 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 270 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 271 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 272 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 273 Flutter 0x00000001052afa40 0x105290000 + 129600 274 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 275 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 276 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 277 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 278 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 279 Flutter 0x00000001052afa40 0x105290000 + 129600 280 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 281 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 282 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 283 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 284 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 285 Flutter 0x00000001052afa40 0x105290000 + 129600 286 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 287 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 288 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 289 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 290 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 291 Flutter 0x00000001052afa40 0x105290000 + 129600 292 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 293 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 294 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 295 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 296 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 297 Flutter 0x00000001052afa40 0x105290000 + 129600 298 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 299 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 300 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 301 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 302 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 303 Flutter 0x00000001052afa40 0x105290000 + 129600 304 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 305 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 306 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 307 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 308 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 309 Flutter 0x00000001052afa40 0x105290000 + 129600 310 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 311 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 312 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 313 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 314 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 315 Flutter 0x00000001052afa40 0x105290000 + 129600 316 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 317 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 318 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 319 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 320 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 321 Flutter 0x00000001052afa40 0x105290000 + 129600 322 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 323 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 324 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 325 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 326 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 327 Flutter 0x00000001052afa40 0x105290000 + 129600 328 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 329 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 330 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 331 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 332 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 333 Flutter 0x00000001052afa40 0x105290000 + 129600 334 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 335 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 336 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 337 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 338 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 339 Flutter 0x00000001052afa40 0x105290000 + 129600 340 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 341 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 342 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 343 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 344 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 345 Flutter 0x00000001052afa40 0x105290000 + 129600 346 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 347 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 348 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 349 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 350 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 351 Flutter 0x00000001052afa40 0x105290000 + 129600 352 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 353 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 354 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 355 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 356 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 357 Flutter 0x00000001052afa40 0x105290000 + 129600 358 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 359 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 360 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 361 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 362 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 363 Flutter 0x00000001052afa40 0x105290000 + 129600 364 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 365 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 366 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 367 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 368 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 369 Flutter 0x00000001052afa40 0x105290000 + 129600 370 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 371 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 372 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 373 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 374 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 375 Flutter 0x00000001052afa40 0x105290000 + 129600 376 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 377 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 378 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 379 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 380 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 381 Flutter 0x00000001052afa40 0x105290000 + 129600 382 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 383 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 384 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 385 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 386 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 387 Flutter 0x00000001052afa40 0x105290000 + 129600 388 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 389 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 390 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 391 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 392 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 393 Flutter 0x00000001052afa40 0x105290000 + 129600 394 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 395 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 396 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 397 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 398 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 399 Flutter 0x00000001052afa40 0x105290000 + 129600 400 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 401 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 402 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 403 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 404 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 405 Flutter 0x00000001052afa40 0x105290000 + 129600 406 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 407 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 408 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 409 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 410 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 411 Flutter 0x00000001052afa40 0x105290000 + 129600 412 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 413 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 414 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 415 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 416 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 417 Flutter 0x00000001052afa40 0x105290000 + 129600 418 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 419 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 420 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 421 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 422 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 423 Flutter 0x00000001052afa40 0x105290000 + 129600 424 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 425 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 426 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 427 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 428 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 429 Flutter 0x00000001052afa40 0x105290000 + 129600 430 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 431 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 432 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 433 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 434 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 435 Flutter 0x00000001052afa40 0x105290000 + 129600 436 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 437 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 438 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 439 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 440 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 441 Flutter 0x00000001052afa40 0x105290000 + 129600 442 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 443 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 444 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 445 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 446 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 447 Flutter 0x00000001052afa40 0x105290000 + 129600 448 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 449 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 450 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 451 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 452 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 453 Flutter 0x00000001052afa40 0x105290000 + 129600 454 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 455 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 456 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 457 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 458 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 459 Flutter 0x00000001052afa40 0x105290000 + 129600 460 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 461 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 462 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 463 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 464 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 465 Flutter 0x00000001052afa40 0x105290000 + 129600 466 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 467 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 468 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 469 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 470 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 471 Flutter 0x00000001052afa40 0x105290000 + 129600 472 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 473 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 474 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 475 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 476 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 477 Flutter 0x00000001052afa40 0x105290000 + 129600 478 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 479 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 480 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 481 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 482 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 483 Flutter 0x00000001052afa40 0x105290000 + 129600 484 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 485 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 486 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 487 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 488 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 489 Flutter 0x00000001052afa40 0x105290000 + 129600 490 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 491 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 492 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 493 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 494 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 495 Flutter 0x00000001052afa40 0x105290000 + 129600 496 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 497 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 498 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 499 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 500 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 501 Flutter 0x00000001052afa40 0x105290000 + 129600 502 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 503 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 504 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 505 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 506 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 507 Flutter 0x00000001052afa40 0x105290000 + 129600 508 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 509 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 510 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 511 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 512 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 513 Flutter 0x00000001052afa40 0x105290000 + 129600 514 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 515 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 516 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 517 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 518 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 519 Flutter 0x00000001052afa40 0x105290000 + 129600 520 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 521 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 522 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 523 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 524 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 525 Flutter 0x00000001052afa40 0x105290000 + 129600 526 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 527 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 528 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 529 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 530 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 531 Flutter 0x00000001052afa40 0x105290000 + 129600 532 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 533 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 534 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 535 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 536 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 537 Flutter 0x00000001052afa40 0x105290000 + 129600 538 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 539 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 540 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 541 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 542 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 543 Flutter 0x00000001052afa40 0x105290000 + 129600 544 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 545 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 546 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 547 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 548 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 549 Flutter 0x00000001052afa40 0x105290000 + 129600 550 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 551 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 552 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 553 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 554 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 555 Flutter 0x00000001052afa40 0x105290000 + 129600 556 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 557 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 558 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 559 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 560 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 561 Flutter 0x00000001052afa40 0x105290000 + 129600 562 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 563 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 564 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 565 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 566 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 567 Flutter 0x00000001052afa40 0x105290000 + 129600 568 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 569 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 570 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 571 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 572 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 573 Flutter 0x00000001052afa40 0x105290000 + 129600 574 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 575 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 576 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 577 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 578 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 579 Flutter 0x00000001052afa40 0x105290000 + 129600 580 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 581 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 582 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 583 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 584 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 585 Flutter 0x00000001052afa40 0x105290000 + 129600 586 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 587 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 588 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 589 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 590 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 591 Flutter 0x00000001052afa40 0x105290000 + 129600 592 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 593 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 594 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 595 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 596 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 597 Flutter 0x00000001052afa40 0x105290000 + 129600 598 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 599 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 600 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 601 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 602 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 603 Flutter 0x00000001052afa40 0x105290000 + 129600 604 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 605 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 606 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 607 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 608 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 609 Flutter 0x00000001052afa40 0x105290000 + 129600 610 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 611 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 612 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 613 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 614 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 615 Flutter 0x00000001052afa40 0x105290000 + 129600 616 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 617 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 618 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 619 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 620 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 621 Flutter 0x00000001052afa40 0x105290000 + 129600 622 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 623 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 624 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 625 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 626 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 627 Flutter 0x00000001052afa40 0x105290000 + 129600 628 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 629 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 630 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 631 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 632 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 633 Flutter 0x00000001052afa40 0x105290000 + 129600 634 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 635 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 636 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 637 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 638 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 639 Flutter 0x00000001052afa40 0x105290000 + 129600 640 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 641 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 642 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 643 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 644 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 645 Flutter 0x00000001052afa40 0x105290000 + 129600 646 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 647 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 648 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 649 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 650 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 651 Flutter 0x00000001052afa40 0x105290000 + 129600 652 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 653 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 654 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 655 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 656 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 657 Flutter 0x00000001052afa40 0x105290000 + 129600 658 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 659 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 660 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 661 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 662 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 663 Flutter 0x00000001052afa40 0x105290000 + 129600 664 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 665 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 666 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 667 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 668 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 669 Flutter 0x00000001052afa40 0x105290000 + 129600 670 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 671 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 672 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 673 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 674 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 675 Flutter 0x00000001052afa40 0x105290000 + 129600 676 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 677 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 678 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 679 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 680 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 681 Flutter 0x00000001052afa40 0x105290000 + 129600 682 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 683 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 684 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 685 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 686 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 687 Flutter 0x00000001052afa40 0x105290000 + 129600 688 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 689 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 690 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 691 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 692 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 693 Flutter 0x00000001052afa40 0x105290000 + 129600 694 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 695 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 696 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 697 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 698 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 699 Flutter 0x00000001052afa40 0x105290000 + 129600 700 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 701 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 702 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 703 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 704 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 705 Flutter 0x00000001052afa40 0x105290000 + 129600 706 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 707 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 708 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 709 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 710 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 711 Flutter 0x00000001052afa40 0x105290000 + 129600 712 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 713 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 714 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 715 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 716 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 717 Flutter 0x00000001052afa40 0x105290000 + 129600 718 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 719 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 720 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 721 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 722 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 723 Flutter 0x00000001052afa40 0x105290000 + 129600 724 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 725 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 726 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 727 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 728 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 729 Flutter 0x00000001052afa40 0x105290000 + 129600 730 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 731 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 732 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 733 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 734 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 735 Flutter 0x00000001052afa40 0x105290000 + 129600 736 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 737 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 738 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 739 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 740 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 741 Flutter 0x00000001052afa40 0x105290000 + 129600 742 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 743 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 744 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 745 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 746 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 747 Flutter 0x00000001052afa40 0x105290000 + 129600 748 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 749 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 750 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 751 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 752 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 753 Flutter 0x00000001052afa40 0x105290000 + 129600 754 ably_flutter 0x0000000104d9315c $sSo24UNUserNotificationCenterCSo22UNNotificationResponseCIeyB_Iegyyy_AbDIeg_Iegggg_TR + 24 (:0) 755 ably_flutter 0x0000000104d9315c specialized PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 472 (PushNotificationEventHandlers.swift:41) 756 ably_flutter 0x0000000104d9286c $s12ably_flutter29PushNotificationEventHandlersC04userD6Center_10didReceive21withCompletionHandlerySo06UNUserdH0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_n + 20 (:0) 757 ably_flutter 0x0000000104d9286c @objc PushNotificationEventHandlers.userNotificationCenter(_:didReceive:withCompletionHandler:) + 108 758 Runner 0x00000001007b8b00 -[FLTFirebaseMessagingPlugin userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 416 (FLTFirebaseMessagingPlugin.m:347) 759 Flutter 0x00000001052afa40 0x105290000 + 129600 ```

This compatibility issue needs to be addressed, is no longer a minor inconvenience.

I'll try to downgrade my packages to fix it.

gabrielginter commented 2 years ago

Upgrading to firebase_messaging v11.4.2 (latest) will cause a crash when using together with ably_flutter on iOS, downgrading to 11.4.1 fixes it, but now I'll be unable to upgrade firebase_messaging package until this is solved.

Afur commented 9 months ago

Using Firebase Messaging along with Ably plugin causes issue that prevent FirebaseMessaging.onBackgroundMessage callback to work properly. I agree that this should be moved as a separate package.

sohamprodt commented 3 months ago

I am able to receive message but not popping up the notification only in foreground on ios device. What might be issue ?

sohamprodt commented 3 months ago

`import 'dart:io'; import 'package:copart_vehicle_bidding/app_state.dart'; import 'package:firebase_messaging/firebase_messaging.dart'; import 'package:flutter/foundation.dart'; import 'package:flutter/material.dart'; import 'package:flutter_local_notifications/flutter_local_notifications.dart';

class NotificationServices { //initialising firebase message plugin FirebaseMessaging messaging = FirebaseMessaging.instance;

//initialising firebase message plugin final FlutterLocalNotificationsPlugin _flutterLocalNotificationsPlugin = FlutterLocalNotificationsPlugin();

//function to initialise flutter local notification plugin to show notifications for android when app is active void initLocalNotifications( BuildContext context, RemoteMessage message) async { var androidInitializationSettings = const AndroidInitializationSettings('@mipmap/ic_launcher'); var iosInitializationSettings = const DarwinInitializationSettings( requestAlertPermission: false, requestBadgePermission: false, requestSoundPermission: false, );

var initializationSetting = InitializationSettings(
    android: androidInitializationSettings, iOS: iosInitializationSettings);

await _flutterLocalNotificationsPlugin.initialize(initializationSetting,
    onDidReceiveNotificationResponse: (payload) {
  // handle interaction when app is active for android
  handleMessage(context, message);
});

}

void firebaseInit(BuildContext context) { FirebaseMessaging.onMessage.listen((message) { RemoteNotification? notification = message.notification; AndroidNotification? android = message.notification!.android;

  if (kDebugMode) {
    print("notifications title:${notification!.title}");
    print("notifications body:${notification.body}");
    // print('count:${android!.count}');
    // print('data:${message.data.toString()}');
  }

  if (Platform.isIOS) {
    foregroundMessage();
  }

  if (Platform.isAndroid) {
    initLocalNotifications(context, message);
    if (FFAppState().Remem) {
      if (FFAppState().authtoken.isNotEmpty) {
        showNotification(message);
        debugPrint('Hello - init');
      }
      return;
    } else if (FFAppState().authtoken.isNotEmpty) {
      showNotification(message);
      debugPrint('Hello - no remember init');
    }
  }
});

}

void requestNotificationPermission() async { NotificationSettings settings = await messaging.requestPermission( alert: true, announcement: true, badge: true, carPlay: true, criticalAlert: true, provisional: false, sound: true, );

if (settings.authorizationStatus == AuthorizationStatus.authorized) {
  if (kDebugMode) {
    print('user granted permission');
  }
} else if (settings.authorizationStatus ==
    AuthorizationStatus.provisional) {
  if (kDebugMode) {
    print('user granted provisional permission');
  }
} else {
  // appsetting.AppSettings.openNotificationSettings();
  if (kDebugMode) {
    print('user denied permission');
  }
}

}

// function to show visible notification when app is active Future showNotification(RemoteMessage message) async { AndroidNotificationChannel channel = const AndroidNotificationChannel( 'pushnotificationapp', 'pushnotificationapp', importance: Importance.max, showBadge: true, playSound: true);

AndroidNotificationDetails androidNotificationDetails =
    AndroidNotificationDetails('pushnotificationapp', 'pushnotificationapp',
        channelDescription: 'pushnotificationapp',
        importance: Importance.high,
        priority: Priority.high,
        playSound: true,
        ticker: 'ticker',
        sound: channel.sound
        //     sound: RawResourceAndroidNotificationSound('jetsons_doorbell')
        //  icon: largeIconPath
        );

const DarwinNotificationDetails darwinNotificationDetails =
    DarwinNotificationDetails(
  presentAlert: true,
  presentBadge: true,
  presentSound: true,
  presentBanner: true,
);

NotificationDetails notificationDetails = NotificationDetails(
    android: androidNotificationDetails, iOS: darwinNotificationDetails);

Future.delayed(Duration.zero, () {
  _flutterLocalNotificationsPlugin.show(
    0,
    message.notification!.title.toString(),
    message.notification!.body.toString(),
    notificationDetails,
  );
});

}

//handle tap on notification when app is in background or terminated Future setupInteractMessage(BuildContext context) async { // when app is terminated RemoteMessage? initialMessage = await FirebaseMessaging.instance.getInitialMessage();

if (initialMessage != null) {
  handleMessage(context, initialMessage);
}

//when app ins background
FirebaseMessaging.onMessageOpenedApp.listen((event) {
  handleMessage(context, event);
});

}

void handleMessage(BuildContext context, RemoteMessage message) { // if (message.data['type'] == 'msj') { if (FFAppState().Remem) { if (FFAppState().authtoken.isNotEmpty) { showNotification(message); debugPrint('Hello'); } return; } else if (FFAppState().authtoken.isNotEmpty) { debugPrint('hello from no remeber'); showNotification(message); }

// Navigator.push(context,
//     MaterialPageRoute(builder: (context) => MessageScreen(
//       id: message.data['id'] ,
//     )));
// }

}

Future foregroundMessage() async { await messaging.setForegroundNotificationPresentationOptions( alert: true, badge: true, sound: true, ); }

//function to get device token on which we will send the notifications Future getDeviceToken() async { String? token = await messaging.getToken(); return token!; }

void isTokenRefresh() async { messaging.onTokenRefresh.listen((event) { event.toString(); if (kDebugMode) { print('refresh'); } }); } } `

Code for reference..also I am initialising all methods at app run time Version of packages ably_flutter: ^1.2.30 firebase_messaging: ^14.9.2