react-native-notify-kit 9.2.1 → 9.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +85 -7
- package/android/build.gradle +6 -5
- package/android/proguard-rules.pro +1 -0
- package/android/src/main/baseline-prof.txt +382 -0
- package/android/src/main/java/app/notifee/core/ForegroundService.java +269 -80
- package/android/src/main/java/app/notifee/core/InitProvider.java +48 -5
- package/android/src/main/java/app/notifee/core/Logger.java +5 -0
- package/android/src/main/java/app/notifee/core/NotificationManager.java +217 -150
- package/android/src/main/java/app/notifee/core/NotificationPendingIntent.java +10 -0
- package/android/src/main/java/app/notifee/core/WarmupHelper.java +84 -0
- package/android/src/main/java/app/notifee/core/model/NotificationAndroidModel.java +17 -1
- package/android/src/main/kotlin/io/invertase/notifee/NotifeeApiModule.kt +30 -0
- package/android/src/test/java/app/notifee/core/ForegroundServiceTest.java +182 -0
- package/android/src/test/java/app/notifee/core/NotificationPendingIntentTest.java +108 -0
- package/dist/NotifeeApiModule.d.ts +1 -0
- package/dist/NotifeeApiModule.js +6 -0
- package/dist/NotifeeApiModule.js.map +1 -1
- package/dist/specs/NativeNotifeeModule.d.ts +1 -0
- package/dist/specs/NativeNotifeeModule.js.map +1 -1
- package/dist/types/Module.d.ts +19 -0
- package/dist/types/NotificationAndroid.d.ts +66 -4
- package/dist/types/NotificationAndroid.js +43 -0
- package/dist/types/NotificationAndroid.js.map +1 -1
- package/dist/utils/validate.d.ts +1 -0
- package/dist/utils/validate.js +10 -4
- package/dist/utils/validate.js.map +1 -1
- package/dist/validators/validateAndroidChannel.js +3 -3
- package/dist/validators/validateAndroidChannel.js.map +1 -1
- package/dist/validators/validateAndroidNotification.js +58 -14
- package/dist/validators/validateAndroidNotification.js.map +1 -1
- package/dist/validators/validateIOSPermissions.js +1 -1
- package/dist/validators/validateIOSPermissions.js.map +1 -1
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/ios/NotifeeCore/NotifeeCore+NSNotificationCenter.m +5 -1
- package/ios/NotifeeCore/NotifeeCore+UNUserNotificationCenter.m +15 -15
- package/ios/NotifeeCore/NotifeeCore.m +41 -14
- package/ios/NotifeeCore/NotifeeCoreDelegateHolder.m +32 -18
- package/ios/NotifeeCore/NotifeeCoreExtensionHelper.m +7 -2
- package/ios/RNNotifee/NotifeeApiModule.mm +33 -11
- package/package.json +1 -1
- package/src/NotifeeApiModule.ts +7 -0
- package/src/specs/NativeNotifeeModule.ts +1 -0
- package/src/types/Module.ts +20 -0
- package/src/types/NotificationAndroid.ts +70 -4
- package/src/utils/validate.ts +12 -4
- package/src/validators/validateAndroidChannel.ts +3 -3
- package/src/validators/validateAndroidNotification.ts +64 -11
- package/src/validators/validateIOSPermissions.ts +1 -1
- package/src/version.ts +1 -1
package/README.md
CHANGED
|
@@ -222,7 +222,17 @@ To modify push notification content before display (e.g., attach images), create
|
|
|
222
222
|
}
|
|
223
223
|
```
|
|
224
224
|
|
|
225
|
-
4.
|
|
225
|
+
4. Implement `serviceExtensionTimeWillExpire` as a safety net. Notification Service Extensions have a ~30-second time budget; if your notification includes a large image attachment and the download is slow, the extension may be terminated before the content handler is called. Deliver a best-effort notification in the expiration handler:
|
|
226
|
+
|
|
227
|
+
```objc
|
|
228
|
+
- (void)serviceExtensionTimeWillExpire {
|
|
229
|
+
// Deliver the notification with whatever content we have so far
|
|
230
|
+
// (e.g., without the image attachment if the download didn't finish).
|
|
231
|
+
self.contentHandler(self.bestAttemptContent);
|
|
232
|
+
}
|
|
233
|
+
```
|
|
234
|
+
|
|
235
|
+
5. Run `cd ios && pod install`
|
|
226
236
|
|
|
227
237
|
## Jest Testing
|
|
228
238
|
|
|
@@ -253,9 +263,10 @@ This fork is a complete migration to React Native's **New Architecture**:
|
|
|
253
263
|
- **Toolchain**: Yarn 4, Node 22+, Java 17, compileSdk/targetSdk 35
|
|
254
264
|
- **Single Android module** — the original Notifee shipped a pre-compiled AAR bundled inside the npm tarball under a frozen Maven coordinate; this fork compiles the core from source as part of the React Native bridge module on every consumer build. Eliminates the `FAIL_ON_PROJECT_REPOS` issue on RN 0.74+ and the Gradle cache staleness bug that could serve outdated bytecode after `yarn upgrade`.
|
|
255
265
|
- **Core notification logic (NotifeeCore) is unchanged** — the public API is fully compatible with the original Notifee
|
|
256
|
-
- **
|
|
266
|
+
- **23 upstream bugs fixed** — see [Bugs Fixed from Upstream Notifee](#bugs-fixed-from-upstream-notifee) below
|
|
257
267
|
- **Reliable trigger notifications** — AlarmManager is the default backend instead of WorkManager, with automatic fallback when exact alarm permission is not granted
|
|
258
268
|
- **New API: `setNotificationConfig()`** — opt-out flag to prevent Notifee from intercepting iOS remote notification handlers (see [New APIs](#new-apis) below)
|
|
269
|
+
- **Baseline Profile** — the library AAR ships a Baseline Profile that instructs ART to AOT-compile the foreground service notification hot path at install time, eliminating JIT penalty on first invocation
|
|
259
270
|
|
|
260
271
|
## Bugs Fixed from Upstream Notifee
|
|
261
272
|
|
|
@@ -284,6 +295,9 @@ This fork fixes the following bugs that were never resolved in the original Noti
|
|
|
284
295
|
| Duplicate symbols linker error when using NSE (`$NotifeeExtension = true`) with static frameworks — `NotifeeExtensionHelper` compiled by both `RNNotifee` and `RNNotifeeCore` pods | iOS | Pre-existing | 9.1.22 |
|
|
285
296
|
| `FAIL_ON_PROJECT_REPOS` rejection on RN 0.74+ — library injected a Maven repository into the consumer's `rootProject.allprojects` block, rejected by `dependencyResolutionManagement` mode | Android | N/A (architectural) | 9.2.0 |
|
|
286
297
|
| Stale Gradle cache could serve outdated AAR bytecode after `yarn upgrade` — same Maven coordinate reused across releases violated Gradle's coordinate-immutability assumption | Android | N/A (architectural) | 9.2.0 |
|
|
298
|
+
| `EventType.DELIVERED` not emitted for `displayNotification()` in foreground (only for trigger notifications) — `notifeeTrigger != nil` guard in `willPresentNotification:` suppressed the event, breaking iOS/Android symmetry | iOS | Pre-existing | 9.3.0 |
|
|
299
|
+
| Tapping a notification without explicit `pressAction` does nothing (app doesn't open) — `NotificationPendingIntent.createIntent()` creates a tap-less PendingIntent when `pressActionModelBundle` is null, especially visible on trigger notifications after app kill | Android | Pre-existing (latent) | 9.3.0 |
|
|
300
|
+
| Foreground service notifications delayed up to 10 seconds on Android 12+ — library never calls `setForegroundServiceBehavior(FOREGROUND_SERVICE_IMMEDIATE)` | Android | [#272](https://github.com/invertase/notifee/issues/272), [#1242](https://github.com/invertase/notifee/issues/1242) | Unreleased |
|
|
287
301
|
|
|
288
302
|
> **Note for apps requiring guaranteed exact alarms (alarm clocks, timers, calendars):**
|
|
289
303
|
> Add `<uses-permission android:name="android.permission.USE_EXACT_ALARM" />` to your app's
|
|
@@ -308,8 +322,14 @@ In addition to bug fixes, the fork makes a few opinionated default changes vs `@
|
|
|
308
322
|
|
|
309
323
|
- **`pressAction.launchActivity` defaults to `'default'` at the native layer when `pressAction.id === 'default'`** (since 9.1.19). The TypeScript validator already applied this default since upstream PR #141 (Sept 2020), but native code paths bypassing the validator (e.g., trigger notifications restored from the Room database after reboot, headless tasks) could miss it. The fork closes the gap at the native layer as defense-in-depth — eliminates an entire class of "tap doesn't open app" bugs in Android task management edge cases.
|
|
310
324
|
|
|
325
|
+
- **`pressAction` defaults to `{ id: 'default', launchActivity: 'default' }` when omitted from the notification payload** (since 9.3.0). Upstream Notifee required an explicit `pressAction` for tap-to-open behavior — without it, the notification displayed but tapping did nothing (only the internal transparent `NotificationReceiverActivity` would launch and finish). The fork injects the default at both the TypeScript validator layer and the native `NotificationManager` layer (defense-in-depth for code paths bypassing the validator, such as trigger notifications rehydrated from Room DB after app kill). Opt out with `pressAction: null` for intentionally non-tappable notifications.
|
|
326
|
+
|
|
311
327
|
- **Library no longer hardcodes `foregroundServiceType` in its manifest** (since 9.1.13 — **BREAKING vs upstream**). Apps using `asForegroundService: true` on Android 14+ must declare their own `foregroundServiceType` on `app.notifee.core.ForegroundService` in their app manifest. See [Foreground Service Setup](#foreground-service-setup-android-14) below for migration instructions. Upstream hardcoded `shortService`, which caused a manifest merger failure ([#1108](https://github.com/invertase/notifee/issues/1108)) and a 3-minute timeout ANR crash ([#703](https://github.com/invertase/notifee/issues/703)).
|
|
312
328
|
|
|
329
|
+
- **Foreground service notifications use `FOREGROUND_SERVICE_IMMEDIATE` by default** (since Unreleased — **BREAKING vs upstream**). Upstream Notifee never called `setForegroundServiceBehavior()`, causing Android 12+ to defer foreground service notification display by up to 10 seconds unless the notification qualified for a system exemption. The fork now sets `FOREGROUND_SERVICE_IMMEDIATE` by default when `asForegroundService: true`, eliminating the delay. Opt out per-notification with `foregroundServiceBehavior: AndroidForegroundServiceBehavior.DEFERRED`. Additionally, the library now pre-loads critical foreground service classes and Binder proxies on a background thread during app startup (`InitProvider.onCreate`), reducing first-display cold-start latency by ~50–100 ms. Opt out of the warmup via `<meta-data android:name="notifee_init_warmup_enabled" android:value="false" />` in your app's `AndroidManifest.xml`.
|
|
330
|
+
|
|
331
|
+
- **iOS `EventType.DELIVERED` now emitted for all foreground notifications** (since 9.3.0 — **BREAKING vs upstream**). Upstream Notifee had a guard in `willPresentNotification:` that suppressed DELIVERED for notifications created via `displayNotification()` (immediate display), emitting it only for trigger notifications. Android always emitted DELIVERED in both cases. The fork removes the guard so iOS matches Android. If you registered `onForegroundEvent` listeners that did heavy work on DELIVERED assuming the event would only fire for trigger notifications, audit them — you may now receive an event per `displayNotification()` call while in foreground. **Known limitation**: trigger notifications that fire while the app is in background or killed still do not emit DELIVERED on iOS — this is a platform limitation (`willPresentNotification:` is only invoked in foreground, and iOS provides no delegate callback for background-delivered triggers). If you need delivery confirmation for background trigger notifications on iOS, check the notification's presence via `getDisplayedNotifications()` after the app returns to foreground.
|
|
332
|
+
|
|
313
333
|
These changes are documented in the [CHANGELOG](CHANGELOG.md) under the release that introduced them. If you rely on any of the upstream defaults, you can either pin to the specific behavior via the opt-out flags listed above, or open an issue to discuss.
|
|
314
334
|
|
|
315
335
|
## Foreground Service Setup (Android 14+)
|
|
@@ -359,9 +379,11 @@ await notifee.createTriggerNotification(notification, {
|
|
|
359
379
|
});
|
|
360
380
|
```
|
|
361
381
|
|
|
362
|
-
### Android: `pressAction`
|
|
382
|
+
### Android: `pressAction` defaults to opening the app on tap
|
|
363
383
|
|
|
364
|
-
On Android,
|
|
384
|
+
On Android, `pressAction` now defaults to `{ id: 'default', launchActivity: 'default' }` when omitted from the notification payload. This means tapping a notification opens the app's main activity by default — matching iOS behavior and eliminating a common footgun where trigger notifications appeared to work but tapping them did nothing after an app kill.
|
|
385
|
+
|
|
386
|
+
You can still provide an explicit `pressAction` to customize tap behavior:
|
|
365
387
|
|
|
366
388
|
```typescript
|
|
367
389
|
await notifee.displayNotification({
|
|
@@ -369,13 +391,23 @@ await notifee.displayNotification({
|
|
|
369
391
|
body: 'Tap to open',
|
|
370
392
|
android: {
|
|
371
393
|
channelId: 'default',
|
|
372
|
-
pressAction: { id: 'default', launchActivity: 'default' },
|
|
394
|
+
pressAction: { id: 'default', launchActivity: 'default' }, // same as the default
|
|
373
395
|
},
|
|
374
396
|
});
|
|
375
397
|
```
|
|
376
398
|
|
|
377
|
-
|
|
378
|
-
|
|
399
|
+
To create a non-tappable notification (e.g. purely informative notifications from a background service), pass `pressAction: null` explicitly:
|
|
400
|
+
|
|
401
|
+
```typescript
|
|
402
|
+
await notifee.displayNotification({
|
|
403
|
+
title: 'Sync in progress',
|
|
404
|
+
body: 'Uploading files...',
|
|
405
|
+
android: {
|
|
406
|
+
channelId: 'default',
|
|
407
|
+
pressAction: null, // notification displays but tapping does nothing
|
|
408
|
+
},
|
|
409
|
+
});
|
|
410
|
+
```
|
|
379
411
|
|
|
380
412
|
## New APIs
|
|
381
413
|
|
|
@@ -400,6 +432,52 @@ With `handleRemoteNotifications: false`:
|
|
|
400
432
|
|
|
401
433
|
Default is `true` (backward compatible — Notifee handles everything, same as original Notifee behavior).
|
|
402
434
|
|
|
435
|
+
## Advanced / Troubleshooting
|
|
436
|
+
|
|
437
|
+
### Manual warmup control
|
|
438
|
+
|
|
439
|
+
The library automatically pre-warms the foreground service notification path during app startup via `InitProvider`. **Most apps do not need to do anything extra.** However, in certain edge cases the automatic warmup may not be sufficient:
|
|
440
|
+
|
|
441
|
+
- **Lazy-loaded library** — if `react-native-notify-kit` is code-split or lazy-loaded, `InitProvider` runs but the TurboModule/JS bridge side isn't initialized yet.
|
|
442
|
+
- **Post-splash-screen warmup** — apps that want to defer warmup to after the splash screen instead of during `Application.onCreate()`.
|
|
443
|
+
- **Low-end devices** — rare cases where the `InitProvider` warmup hasn't finished by the time the user triggers the first notification.
|
|
444
|
+
|
|
445
|
+
For these cases, call `prewarmForegroundService()` at a moment of your choosing:
|
|
446
|
+
|
|
447
|
+
```typescript
|
|
448
|
+
import notifee from 'react-native-notify-kit';
|
|
449
|
+
|
|
450
|
+
// Call after splash screen, during onboarding, or before the user
|
|
451
|
+
// is likely to trigger a foreground service notification.
|
|
452
|
+
await notifee.prewarmForegroundService();
|
|
453
|
+
```
|
|
454
|
+
|
|
455
|
+
**Key facts:**
|
|
456
|
+
|
|
457
|
+
- **Idempotent** — safe to call multiple times; class loading after the first call is a no-op from ART's perspective.
|
|
458
|
+
- **iOS no-op** — resolves immediately on iOS (Android-only optimization).
|
|
459
|
+
- **Does NOT start a foreground service** — it only performs class loading and Binder proxy warming. No Google Play policy risk.
|
|
460
|
+
- **Best-effort** — internal failures are logged and swallowed; the promise always resolves.
|
|
461
|
+
|
|
462
|
+
To verify whether calling this method provides a measurable benefit for your app, capture a Perfetto trace with `notifee:*` trace sections and compare the `notifee:displayNotification` duration with and without the prewarm call. See the Phase 1 Perfetto measurement instructions for the exact `adb shell perfetto` command.
|
|
463
|
+
|
|
464
|
+
### Regenerating the Baseline Profile
|
|
465
|
+
|
|
466
|
+
The library ships a Baseline Profile (`packages/react-native/android/src/main/baseline-prof.txt`) that instructs ART to AOT-compile the notification hot path at install time. This profile should be regenerated after significant changes to the notification display code path.
|
|
467
|
+
|
|
468
|
+
**Prerequisites:**
|
|
469
|
+
|
|
470
|
+
- A physical device connected via adb (Pixel 9 Pro XL with Android 16+ recommended) or a running emulator with API 33+
|
|
471
|
+
- The smoke app must be buildable (`yarn install` in the repo root)
|
|
472
|
+
|
|
473
|
+
**Command:**
|
|
474
|
+
|
|
475
|
+
```bash
|
|
476
|
+
bash scripts/generate-baseline-profile.sh
|
|
477
|
+
```
|
|
478
|
+
|
|
479
|
+
The script runs the macrobenchmark test in `apps/smoke/android/baselineprofile/`, captures the profile on the connected device, filters it to library-only rules, and copies it to the library's `src/main/baseline-prof.txt`. Review the generated file for unexpected entries, then commit it.
|
|
480
|
+
|
|
403
481
|
## Documentation
|
|
404
482
|
|
|
405
483
|
The upstream Notifee documentation remains the best reference for the public API and platform guides used by this fork.
|
package/android/build.gradle
CHANGED
|
@@ -59,8 +59,7 @@ android {
|
|
|
59
59
|
|
|
60
60
|
javaCompileOptions {
|
|
61
61
|
annotationProcessorOptions {
|
|
62
|
-
arguments = ["room.schemaLocation": "$projectDir/schemas".toString()
|
|
63
|
-
eventBusIndex: 'app.notifee.core.EventBusIndex']
|
|
62
|
+
arguments = ["room.schemaLocation": "$projectDir/schemas".toString()]
|
|
64
63
|
}
|
|
65
64
|
}
|
|
66
65
|
}
|
|
@@ -138,9 +137,11 @@ dependencies {
|
|
|
138
137
|
api 'androidx.sqlite:sqlite-framework:2.6.2'
|
|
139
138
|
annotationProcessor "androidx.room:room-compiler:$room_version"
|
|
140
139
|
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
140
|
+
api 'org.greenrobot:eventbus:3.3.1' // https://github.com/greenrobot/EventBus/releases
|
|
141
|
+
|
|
142
|
+
// ProfileInstaller bootstraps baseline profiles on devices that do not receive
|
|
143
|
+
// cloud-compiled profiles from Play Store (sideloads, debug builds).
|
|
144
|
+
api 'androidx.profileinstaller:profileinstaller:1.4.1'
|
|
144
145
|
|
|
145
146
|
// --- Bridge dependencies ---
|
|
146
147
|
implementation 'androidx.lifecycle:lifecycle-process:2.3.1'
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
# InitProvider is subclassed by the RN bridge module (NotifeeInitProvider).
|
|
20
20
|
# R8 must not finalize its methods, otherwise the bridge cannot override onCreate().
|
|
21
21
|
-keep class app.notifee.core.InitProvider { *; }
|
|
22
|
+
-keep class app.notifee.core.WarmupHelper { *; }
|
|
22
23
|
-keeppackagenames app.notifee.core.**
|
|
23
24
|
|
|
24
25
|
# --- Annotations ---
|
|
@@ -0,0 +1,382 @@
|
|
|
1
|
+
# Baseline Profile for react-native-notify-kit
|
|
2
|
+
# Generated by apps/smoke/android/baselineprofile — do not edit by hand
|
|
3
|
+
# Regenerate with: bash scripts/generate-baseline-profile.sh
|
|
4
|
+
|
|
5
|
+
Lapp/notifee/core/ChannelManager;
|
|
6
|
+
SPLapp/notifee/core/ChannelManager;-><clinit>()V
|
|
7
|
+
SPLapp/notifee/core/ChannelManager;->createChannel(Lapp/notifee/core/model/ChannelModel;)Lcom/google/common/util/concurrent/ListenableFuture;
|
|
8
|
+
SPLapp/notifee/core/ChannelManager;->lambda$createChannel$0(Lapp/notifee/core/model/ChannelModel;)Ljava/lang/Void;
|
|
9
|
+
Lapp/notifee/core/ChannelManager$$ExternalSyntheticLambda4;
|
|
10
|
+
SPLapp/notifee/core/ChannelManager$$ExternalSyntheticLambda4;-><init>(Lapp/notifee/core/model/ChannelModel;)V
|
|
11
|
+
SPLapp/notifee/core/ChannelManager$$ExternalSyntheticLambda4;->call()Ljava/lang/Object;
|
|
12
|
+
Lapp/notifee/core/ContextHolder;
|
|
13
|
+
SPLapp/notifee/core/ContextHolder;->getApplicationContext()Landroid/content/Context;
|
|
14
|
+
SPLapp/notifee/core/ContextHolder;->setApplicationContext(Landroid/content/Context;)V
|
|
15
|
+
Lapp/notifee/core/EventBus;
|
|
16
|
+
SPLapp/notifee/core/EventBus;-><clinit>()V
|
|
17
|
+
SPLapp/notifee/core/EventBus;-><init>()V
|
|
18
|
+
SPLapp/notifee/core/EventBus;->getDefault()Lorg/greenrobot/eventbus/EventBus;
|
|
19
|
+
SPLapp/notifee/core/EventBus;->getInstance()Lapp/notifee/core/EventBus;
|
|
20
|
+
SPLapp/notifee/core/EventBus;->post(Ljava/lang/Object;)V
|
|
21
|
+
SPLapp/notifee/core/EventBus;->register(Ljava/lang/Object;)V
|
|
22
|
+
SPLapp/notifee/core/EventBus;->removeStickEvent(Ljava/lang/Class;)Ljava/lang/Object;
|
|
23
|
+
Lapp/notifee/core/EventSubscriber;
|
|
24
|
+
SPLapp/notifee/core/EventSubscriber;-><clinit>()V
|
|
25
|
+
SPLapp/notifee/core/EventSubscriber;-><init>()V
|
|
26
|
+
SPLapp/notifee/core/EventSubscriber;->getContext()Landroid/content/Context;
|
|
27
|
+
SPLapp/notifee/core/EventSubscriber;->onForegroundServiceEvent(Lapp/notifee/core/event/ForegroundServiceEvent;)V
|
|
28
|
+
SPLapp/notifee/core/EventSubscriber;->onNotificationEvent(Lapp/notifee/core/event/NotificationEvent;)V
|
|
29
|
+
SPLapp/notifee/core/EventSubscriber;->register(Lapp/notifee/core/interfaces/EventListener;)V
|
|
30
|
+
Lapp/notifee/core/ForegroundService;
|
|
31
|
+
SPLapp/notifee/core/ForegroundService;-><clinit>()V
|
|
32
|
+
SPLapp/notifee/core/ForegroundService;-><init>()V
|
|
33
|
+
SPLapp/notifee/core/ForegroundService;->onStartCommand(Landroid/content/Intent;II)I
|
|
34
|
+
SPLapp/notifee/core/ForegroundService;->start(ILandroid/app/Notification;Landroid/os/Bundle;)V
|
|
35
|
+
Lapp/notifee/core/ForegroundService$$ExternalSyntheticLambda0;
|
|
36
|
+
SPLapp/notifee/core/ForegroundService$$ExternalSyntheticLambda0;-><init>(Lapp/notifee/core/ForegroundService;)V
|
|
37
|
+
Lapp/notifee/core/InitProvider;
|
|
38
|
+
SPLapp/notifee/core/InitProvider;-><init>()V
|
|
39
|
+
SPLapp/notifee/core/InitProvider;->attachInfo(Landroid/content/Context;Landroid/content/pm/ProviderInfo;)V
|
|
40
|
+
SPLapp/notifee/core/InitProvider;->dispatchWarmup(Landroid/content/Context;)V
|
|
41
|
+
SPLapp/notifee/core/InitProvider;->isWarmupEnabled(Landroid/content/Context;)Z
|
|
42
|
+
SPLapp/notifee/core/InitProvider;->lambda$dispatchWarmup$0(Ljava/lang/Runnable;)Ljava/lang/Thread;
|
|
43
|
+
SPLapp/notifee/core/InitProvider;->lambda$dispatchWarmup$1(Landroid/content/Context;)V
|
|
44
|
+
SPLapp/notifee/core/InitProvider;->onCreate()Z
|
|
45
|
+
Lapp/notifee/core/InitProvider$$ExternalSyntheticLambda0;
|
|
46
|
+
SPLapp/notifee/core/InitProvider$$ExternalSyntheticLambda0;-><init>()V
|
|
47
|
+
SPLapp/notifee/core/InitProvider$$ExternalSyntheticLambda0;->newThread(Ljava/lang/Runnable;)Ljava/lang/Thread;
|
|
48
|
+
Lapp/notifee/core/InitProvider$$ExternalSyntheticLambda1;
|
|
49
|
+
SPLapp/notifee/core/InitProvider$$ExternalSyntheticLambda1;-><init>(Landroid/content/Context;)V
|
|
50
|
+
SPLapp/notifee/core/InitProvider$$ExternalSyntheticLambda1;->run()V
|
|
51
|
+
Lapp/notifee/core/Logger;
|
|
52
|
+
SPLapp/notifee/core/Logger;->d(Ljava/lang/String;Ljava/lang/String;)V
|
|
53
|
+
SPLapp/notifee/core/Logger;->tagAndMessage(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
|
|
54
|
+
Lapp/notifee/core/Notifee;
|
|
55
|
+
SPLapp/notifee/core/Notifee;-><clinit>()V
|
|
56
|
+
SPLapp/notifee/core/Notifee;-><init>()V
|
|
57
|
+
SPLapp/notifee/core/Notifee;->createChannel(Landroid/os/Bundle;Lapp/notifee/core/interfaces/MethodCallResult;)V
|
|
58
|
+
SPLapp/notifee/core/Notifee;->displayNotification(Landroid/os/Bundle;Lapp/notifee/core/interfaces/MethodCallResult;)V
|
|
59
|
+
SPLapp/notifee/core/Notifee;->getInitialNotification(Landroid/app/Activity;Lapp/notifee/core/interfaces/MethodCallResult;)V
|
|
60
|
+
SPLapp/notifee/core/Notifee;->getInstance()Lapp/notifee/core/Notifee;
|
|
61
|
+
SPLapp/notifee/core/Notifee;->getListeningExecutorService()Lcom/google/common/util/concurrent/ListeningExecutorService;
|
|
62
|
+
SPLapp/notifee/core/Notifee;->initialize(Lapp/notifee/core/interfaces/EventListener;)V
|
|
63
|
+
Lapp/notifee/core/Notifee$3;
|
|
64
|
+
SPLapp/notifee/core/Notifee$3;-><init>(Lapp/notifee/core/Notifee;Lapp/notifee/core/interfaces/MethodCallResult;)V
|
|
65
|
+
SPLapp/notifee/core/Notifee$3;->onSuccess(Ljava/lang/Object;)V
|
|
66
|
+
SPLapp/notifee/core/Notifee$3;->onSuccess(Ljava/lang/Void;)V
|
|
67
|
+
Lapp/notifee/core/Notifee$7;
|
|
68
|
+
SPLapp/notifee/core/Notifee$7;-><init>(Lapp/notifee/core/Notifee;Lapp/notifee/core/interfaces/MethodCallResult;)V
|
|
69
|
+
SPLapp/notifee/core/Notifee$7;->onSuccess(Ljava/lang/Object;)V
|
|
70
|
+
SPLapp/notifee/core/Notifee$7;->onSuccess(Ljava/lang/Void;)V
|
|
71
|
+
Lapp/notifee/core/NotifeeAlarmManager;
|
|
72
|
+
SPLapp/notifee/core/NotifeeAlarmManager;-><clinit>()V
|
|
73
|
+
SPLapp/notifee/core/NotifeeAlarmManager;-><init>()V
|
|
74
|
+
SPLapp/notifee/core/NotifeeAlarmManager;->displayScheduledNotification(Landroid/os/Bundle;Landroid/content/BroadcastReceiver$PendingResult;)V
|
|
75
|
+
SPLapp/notifee/core/NotifeeAlarmManager;->getScheduledNotifications()Lcom/google/common/util/concurrent/ListenableFuture;
|
|
76
|
+
SPLapp/notifee/core/NotifeeAlarmManager;->rescheduleNotifications(Landroid/content/BroadcastReceiver$PendingResult;)V
|
|
77
|
+
Lapp/notifee/core/NotifeeAlarmManager$1;
|
|
78
|
+
SPLapp/notifee/core/NotifeeAlarmManager$1;-><init>(Lapp/notifee/core/NotifeeAlarmManager;Landroid/content/BroadcastReceiver$PendingResult;)V
|
|
79
|
+
SPLapp/notifee/core/NotifeeAlarmManager$1;->onSuccess(Ljava/lang/Object;)V
|
|
80
|
+
SPLapp/notifee/core/NotifeeAlarmManager$1;->onSuccess(Ljava/util/List;)V
|
|
81
|
+
Lapp/notifee/core/NotificationAlarmReceiver;
|
|
82
|
+
SPLapp/notifee/core/NotificationAlarmReceiver;-><init>()V
|
|
83
|
+
SPLapp/notifee/core/NotificationAlarmReceiver;->onReceive(Landroid/content/Context;Landroid/content/Intent;)V
|
|
84
|
+
Lapp/notifee/core/NotificationManager;
|
|
85
|
+
SPLapp/notifee/core/NotificationManager;-><clinit>()V
|
|
86
|
+
SPLapp/notifee/core/NotificationManager;->displayNotification(Lapp/notifee/core/model/NotificationModel;Landroid/os/Bundle;)Lcom/google/common/util/concurrent/ListenableFuture;
|
|
87
|
+
SPLapp/notifee/core/NotificationManager;->lambda$displayNotification$14(Lapp/notifee/core/model/NotificationModel;Landroid/os/Bundle;Landroidx/core/app/NotificationCompat$Builder;)Lcom/google/common/util/concurrent/ListenableFuture;
|
|
88
|
+
SPLapp/notifee/core/NotificationManager;->lambda$notificationBundleToBuilder$0(Lapp/notifee/core/model/NotificationAndroidModel;Lapp/notifee/core/model/NotificationModel;)Landroidx/core/app/NotificationCompat$Builder;
|
|
89
|
+
SPLapp/notifee/core/NotificationManager;->lambda$notificationBundleToBuilder$1(Landroidx/core/app/NotificationCompat$Builder;Lapp/notifee/core/model/NotificationAndroidModel;)Landroidx/core/app/NotificationCompat$Builder;
|
|
90
|
+
SPLapp/notifee/core/NotificationManager;->lambda$notificationBundleToBuilder$2(Lapp/notifee/core/model/NotificationAndroidModel;Landroidx/core/app/NotificationCompat$Builder;)Lcom/google/common/util/concurrent/ListenableFuture;
|
|
91
|
+
SPLapp/notifee/core/NotificationManager;->lambda$notificationBundleToBuilder$3(Landroidx/core/app/NotificationCompat$Builder;Lapp/notifee/core/model/NotificationAndroidModel;Lapp/notifee/core/model/NotificationModel;)Landroidx/core/app/NotificationCompat$Builder;
|
|
92
|
+
SPLapp/notifee/core/NotificationManager;->lambda$notificationBundleToBuilder$4(Lapp/notifee/core/model/NotificationAndroidModel;Lapp/notifee/core/model/NotificationModel;Landroidx/core/app/NotificationCompat$Builder;)Lcom/google/common/util/concurrent/ListenableFuture;
|
|
93
|
+
SPLapp/notifee/core/NotificationManager;->lambda$notificationBundleToBuilder$5(Landroidx/core/app/NotificationCompat$Builder;Lapp/notifee/core/model/NotificationAndroidModel;Lapp/notifee/core/model/NotificationModel;)Landroidx/core/app/NotificationCompat$Builder;
|
|
94
|
+
SPLapp/notifee/core/NotificationManager;->lambda$notificationBundleToBuilder$6(Lapp/notifee/core/model/NotificationAndroidModel;Lapp/notifee/core/model/NotificationModel;Landroidx/core/app/NotificationCompat$Builder;)Lcom/google/common/util/concurrent/ListenableFuture;
|
|
95
|
+
SPLapp/notifee/core/NotificationManager;->lambda$notificationBundleToBuilder$7(Lapp/notifee/core/model/NotificationAndroidModel;Landroidx/core/app/NotificationCompat$Builder;)Landroidx/core/app/NotificationCompat$Builder;
|
|
96
|
+
SPLapp/notifee/core/NotificationManager;->lambda$notificationBundleToBuilder$8(Lapp/notifee/core/model/NotificationAndroidModel;Landroidx/core/app/NotificationCompat$Builder;)Lcom/google/common/util/concurrent/ListenableFuture;
|
|
97
|
+
SPLapp/notifee/core/NotificationManager;->notificationBundleToBuilder(Lapp/notifee/core/model/NotificationModel;)Lcom/google/common/util/concurrent/ListenableFuture;
|
|
98
|
+
Lapp/notifee/core/NotificationManager$$ExternalSyntheticLambda0;
|
|
99
|
+
SPLapp/notifee/core/NotificationManager$$ExternalSyntheticLambda0;-><init>(Lapp/notifee/core/model/NotificationAndroidModel;Landroidx/core/app/NotificationCompat$Builder;)V
|
|
100
|
+
SPLapp/notifee/core/NotificationManager$$ExternalSyntheticLambda0;->call()Ljava/lang/Object;
|
|
101
|
+
Lapp/notifee/core/NotificationManager$$ExternalSyntheticLambda11;
|
|
102
|
+
SPLapp/notifee/core/NotificationManager$$ExternalSyntheticLambda11;-><init>(Lapp/notifee/core/model/NotificationAndroidModel;Lapp/notifee/core/model/NotificationModel;)V
|
|
103
|
+
SPLapp/notifee/core/NotificationManager$$ExternalSyntheticLambda11;->call()Ljava/lang/Object;
|
|
104
|
+
Lapp/notifee/core/NotificationManager$$ExternalSyntheticLambda13;
|
|
105
|
+
SPLapp/notifee/core/NotificationManager$$ExternalSyntheticLambda13;-><init>(Lapp/notifee/core/model/NotificationAndroidModel;)V
|
|
106
|
+
SPLapp/notifee/core/NotificationManager$$ExternalSyntheticLambda13;->apply(Ljava/lang/Object;)Lcom/google/common/util/concurrent/ListenableFuture;
|
|
107
|
+
Lapp/notifee/core/NotificationManager$$ExternalSyntheticLambda14;
|
|
108
|
+
SPLapp/notifee/core/NotificationManager$$ExternalSyntheticLambda14;-><init>(Lapp/notifee/core/model/NotificationAndroidModel;Lapp/notifee/core/model/NotificationModel;)V
|
|
109
|
+
SPLapp/notifee/core/NotificationManager$$ExternalSyntheticLambda14;->apply(Ljava/lang/Object;)Lcom/google/common/util/concurrent/ListenableFuture;
|
|
110
|
+
Lapp/notifee/core/NotificationManager$$ExternalSyntheticLambda15;
|
|
111
|
+
SPLapp/notifee/core/NotificationManager$$ExternalSyntheticLambda15;-><init>(Lapp/notifee/core/model/NotificationAndroidModel;Lapp/notifee/core/model/NotificationModel;)V
|
|
112
|
+
SPLapp/notifee/core/NotificationManager$$ExternalSyntheticLambda15;->apply(Ljava/lang/Object;)Lcom/google/common/util/concurrent/ListenableFuture;
|
|
113
|
+
Lapp/notifee/core/NotificationManager$$ExternalSyntheticLambda16;
|
|
114
|
+
SPLapp/notifee/core/NotificationManager$$ExternalSyntheticLambda16;-><init>(Lapp/notifee/core/model/NotificationAndroidModel;)V
|
|
115
|
+
SPLapp/notifee/core/NotificationManager$$ExternalSyntheticLambda16;->apply(Ljava/lang/Object;)Lcom/google/common/util/concurrent/ListenableFuture;
|
|
116
|
+
Lapp/notifee/core/NotificationManager$$ExternalSyntheticLambda17;
|
|
117
|
+
SPLapp/notifee/core/NotificationManager$$ExternalSyntheticLambda17;-><init>(Landroidx/core/app/NotificationCompat$Builder;Lapp/notifee/core/model/NotificationAndroidModel;)V
|
|
118
|
+
SPLapp/notifee/core/NotificationManager$$ExternalSyntheticLambda17;->call()Ljava/lang/Object;
|
|
119
|
+
Lapp/notifee/core/NotificationManager$$ExternalSyntheticLambda18;
|
|
120
|
+
SPLapp/notifee/core/NotificationManager$$ExternalSyntheticLambda18;-><init>(Lapp/notifee/core/model/NotificationModel;Landroid/os/Bundle;)V
|
|
121
|
+
SPLapp/notifee/core/NotificationManager$$ExternalSyntheticLambda18;->apply(Ljava/lang/Object;)Lcom/google/common/util/concurrent/ListenableFuture;
|
|
122
|
+
Lapp/notifee/core/NotificationManager$$ExternalSyntheticLambda20;
|
|
123
|
+
SPLapp/notifee/core/NotificationManager$$ExternalSyntheticLambda20;-><init>(Landroidx/core/app/NotificationCompat$Builder;Lapp/notifee/core/model/NotificationAndroidModel;Lapp/notifee/core/model/NotificationModel;)V
|
|
124
|
+
SPLapp/notifee/core/NotificationManager$$ExternalSyntheticLambda20;->call()Ljava/lang/Object;
|
|
125
|
+
Lapp/notifee/core/NotificationManager$$ExternalSyntheticLambda5;
|
|
126
|
+
SPLapp/notifee/core/NotificationManager$$ExternalSyntheticLambda5;-><init>(Landroidx/core/app/NotificationCompat$Builder;Lapp/notifee/core/model/NotificationAndroidModel;Lapp/notifee/core/model/NotificationModel;)V
|
|
127
|
+
SPLapp/notifee/core/NotificationManager$$ExternalSyntheticLambda5;->call()Ljava/lang/Object;
|
|
128
|
+
Lapp/notifee/core/NotificationPendingIntent;
|
|
129
|
+
SPLapp/notifee/core/NotificationPendingIntent;->createIntent(ILandroid/os/Bundle;I[Ljava/lang/String;[Landroid/os/Bundle;)Landroid/app/PendingIntent;
|
|
130
|
+
SPLapp/notifee/core/NotificationPendingIntent;->createLaunchActivityIntent(Landroid/content/Context;ILapp/notifee/core/model/NotificationAndroidPressActionModel;)Landroid/content/Intent;
|
|
131
|
+
SPLapp/notifee/core/NotificationPendingIntent;->setIntentExtras(Landroid/content/Intent;II[Ljava/lang/String;[Landroid/os/Bundle;)V
|
|
132
|
+
SPLapp/notifee/core/NotificationPendingIntent;->shouldCreateLaunchActivityIntent(Lapp/notifee/core/model/NotificationAndroidPressActionModel;)Z
|
|
133
|
+
Lapp/notifee/core/NotificationReceiverActivity;
|
|
134
|
+
Lapp/notifee/core/RebootBroadcastReceiver;
|
|
135
|
+
SPLapp/notifee/core/RebootBroadcastReceiver;-><init>()V
|
|
136
|
+
SPLapp/notifee/core/RebootBroadcastReceiver;->onReceive(Landroid/content/Context;Landroid/content/Intent;)V
|
|
137
|
+
Lapp/notifee/core/ReceiverService;
|
|
138
|
+
SPLapp/notifee/core/ReceiverService;-><clinit>()V
|
|
139
|
+
SPLapp/notifee/core/ReceiverService;->createIntent(Ljava/lang/String;[Ljava/lang/String;[Landroid/os/Bundle;)Landroid/app/PendingIntent;
|
|
140
|
+
Lapp/notifee/core/WarmupHelper;
|
|
141
|
+
SPLapp/notifee/core/WarmupHelper;-><clinit>()V
|
|
142
|
+
SPLapp/notifee/core/WarmupHelper;->runWarmup(Landroid/content/Context;)V
|
|
143
|
+
Lapp/notifee/core/database/NotifeeCoreDatabase;
|
|
144
|
+
SPLapp/notifee/core/database/NotifeeCoreDatabase;-><clinit>()V
|
|
145
|
+
SPLapp/notifee/core/database/NotifeeCoreDatabase;-><init>()V
|
|
146
|
+
SPLapp/notifee/core/database/NotifeeCoreDatabase;->getDatabase(Landroid/content/Context;)Lapp/notifee/core/database/NotifeeCoreDatabase;
|
|
147
|
+
Lapp/notifee/core/database/NotifeeCoreDatabase$1;
|
|
148
|
+
SPLapp/notifee/core/database/NotifeeCoreDatabase$1;-><init>(II)V
|
|
149
|
+
Lapp/notifee/core/database/NotifeeCoreDatabase_Impl;
|
|
150
|
+
SPLapp/notifee/core/database/NotifeeCoreDatabase_Impl;-><init>()V
|
|
151
|
+
SPLapp/notifee/core/database/NotifeeCoreDatabase_Impl;->access$000(Lapp/notifee/core/database/NotifeeCoreDatabase_Impl;Landroidx/sqlite/SQLiteConnection;)V
|
|
152
|
+
SPLapp/notifee/core/database/NotifeeCoreDatabase_Impl;->createInvalidationTracker()Landroidx/room/InvalidationTracker;
|
|
153
|
+
SPLapp/notifee/core/database/NotifeeCoreDatabase_Impl;->createOpenDelegate()Landroidx/room/RoomOpenDelegate;
|
|
154
|
+
SPLapp/notifee/core/database/NotifeeCoreDatabase_Impl;->createOpenDelegate()Landroidx/room/RoomOpenDelegateMarker;
|
|
155
|
+
SPLapp/notifee/core/database/NotifeeCoreDatabase_Impl;->getAutoMigrations(Ljava/util/Map;)Ljava/util/List;
|
|
156
|
+
SPLapp/notifee/core/database/NotifeeCoreDatabase_Impl;->getRequiredAutoMigrationSpecs()Ljava/util/Set;
|
|
157
|
+
SPLapp/notifee/core/database/NotifeeCoreDatabase_Impl;->getRequiredTypeConverters()Ljava/util/Map;
|
|
158
|
+
SPLapp/notifee/core/database/NotifeeCoreDatabase_Impl;->workDao()Lapp/notifee/core/database/WorkDataDao;
|
|
159
|
+
Lapp/notifee/core/database/NotifeeCoreDatabase_Impl$1;
|
|
160
|
+
SPLapp/notifee/core/database/NotifeeCoreDatabase_Impl$1;-><init>(Lapp/notifee/core/database/NotifeeCoreDatabase_Impl;ILjava/lang/String;Ljava/lang/String;)V
|
|
161
|
+
SPLapp/notifee/core/database/NotifeeCoreDatabase_Impl$1;->createAllTables(Landroidx/sqlite/SQLiteConnection;)V
|
|
162
|
+
SPLapp/notifee/core/database/NotifeeCoreDatabase_Impl$1;->onCreate(Landroidx/sqlite/SQLiteConnection;)V
|
|
163
|
+
SPLapp/notifee/core/database/NotifeeCoreDatabase_Impl$1;->onOpen(Landroidx/sqlite/SQLiteConnection;)V
|
|
164
|
+
Lapp/notifee/core/database/WorkDataDao;
|
|
165
|
+
Lapp/notifee/core/database/WorkDataDao_Impl;
|
|
166
|
+
SPLapp/notifee/core/database/WorkDataDao_Impl;-><init>(Landroidx/room/RoomDatabase;)V
|
|
167
|
+
SPLapp/notifee/core/database/WorkDataDao_Impl;->getAllWithAlarmManager(Ljava/lang/Boolean;)Ljava/util/List;
|
|
168
|
+
SPLapp/notifee/core/database/WorkDataDao_Impl;->getRequiredConverters()Ljava/util/List;
|
|
169
|
+
SPLapp/notifee/core/database/WorkDataDao_Impl;->lambda$getAllWithAlarmManager$3(Ljava/lang/Boolean;Landroidx/sqlite/SQLiteConnection;)Ljava/util/List;
|
|
170
|
+
Lapp/notifee/core/database/WorkDataDao_Impl$$ExternalSyntheticLambda0;
|
|
171
|
+
SPLapp/notifee/core/database/WorkDataDao_Impl$$ExternalSyntheticLambda0;-><init>(Ljava/lang/Boolean;)V
|
|
172
|
+
SPLapp/notifee/core/database/WorkDataDao_Impl$$ExternalSyntheticLambda0;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
|
|
173
|
+
Lapp/notifee/core/database/WorkDataDao_Impl$1;
|
|
174
|
+
SPLapp/notifee/core/database/WorkDataDao_Impl$1;-><init>(Lapp/notifee/core/database/WorkDataDao_Impl;)V
|
|
175
|
+
Lapp/notifee/core/database/WorkDataDao_Impl$2;
|
|
176
|
+
SPLapp/notifee/core/database/WorkDataDao_Impl$2;-><init>(Lapp/notifee/core/database/WorkDataDao_Impl;)V
|
|
177
|
+
Lapp/notifee/core/database/WorkDataRepository;
|
|
178
|
+
SPLapp/notifee/core/database/WorkDataRepository;->$r8$lambda$qSNa3MAz87Wnl42VSXYwVJ1xEG0(Lapp/notifee/core/database/WorkDataRepository;Ljava/lang/Boolean;)Ljava/util/List;
|
|
179
|
+
SPLapp/notifee/core/database/WorkDataRepository;-><init>(Landroid/content/Context;)V
|
|
180
|
+
SPLapp/notifee/core/database/WorkDataRepository;->getAllWithAlarmManager(Ljava/lang/Boolean;)Lcom/google/common/util/concurrent/ListenableFuture;
|
|
181
|
+
SPLapp/notifee/core/database/WorkDataRepository;->lambda$getAllWithAlarmManager$2(Ljava/lang/Boolean;)Ljava/util/List;
|
|
182
|
+
Lapp/notifee/core/database/WorkDataRepository$$ExternalSyntheticLambda3;
|
|
183
|
+
SPLapp/notifee/core/database/WorkDataRepository$$ExternalSyntheticLambda3;-><init>(Lapp/notifee/core/database/WorkDataRepository;Ljava/lang/Boolean;)V
|
|
184
|
+
SPLapp/notifee/core/database/WorkDataRepository$$ExternalSyntheticLambda3;->call()Ljava/lang/Object;
|
|
185
|
+
Lapp/notifee/core/event/BlockStateEvent;
|
|
186
|
+
Lapp/notifee/core/event/ForegroundServiceEvent;
|
|
187
|
+
SPLapp/notifee/core/event/ForegroundServiceEvent;-><init>(Lapp/notifee/core/model/NotificationModel;Lapp/notifee/core/interfaces/MethodCallResult;)V
|
|
188
|
+
SPLapp/notifee/core/event/ForegroundServiceEvent;->getNotification()Lapp/notifee/core/model/NotificationModel;
|
|
189
|
+
Lapp/notifee/core/event/InitialNotificationEvent;
|
|
190
|
+
Lapp/notifee/core/event/LogEvent;
|
|
191
|
+
Lapp/notifee/core/event/NotificationEvent;
|
|
192
|
+
SPLapp/notifee/core/event/NotificationEvent;-><init>(ILapp/notifee/core/model/NotificationModel;)V
|
|
193
|
+
SPLapp/notifee/core/event/NotificationEvent;->getExtras()Landroid/os/Bundle;
|
|
194
|
+
SPLapp/notifee/core/event/NotificationEvent;->getNotification()Lapp/notifee/core/model/NotificationModel;
|
|
195
|
+
SPLapp/notifee/core/event/NotificationEvent;->getType()I
|
|
196
|
+
Lapp/notifee/core/interfaces/EventListener;
|
|
197
|
+
Lapp/notifee/core/interfaces/MethodCallResult;
|
|
198
|
+
Lapp/notifee/core/model/ChannelModel;
|
|
199
|
+
SPLapp/notifee/core/model/ChannelModel;-><init>(Landroid/os/Bundle;)V
|
|
200
|
+
SPLapp/notifee/core/model/ChannelModel;->fromBundle(Landroid/os/Bundle;)Lapp/notifee/core/model/ChannelModel;
|
|
201
|
+
SPLapp/notifee/core/model/ChannelModel;->getBadge()Ljava/lang/Boolean;
|
|
202
|
+
SPLapp/notifee/core/model/ChannelModel;->getBypassDnd()Ljava/lang/Boolean;
|
|
203
|
+
SPLapp/notifee/core/model/ChannelModel;->getDescription()Ljava/lang/String;
|
|
204
|
+
SPLapp/notifee/core/model/ChannelModel;->getGroupId()Ljava/lang/String;
|
|
205
|
+
SPLapp/notifee/core/model/ChannelModel;->getId()Ljava/lang/String;
|
|
206
|
+
SPLapp/notifee/core/model/ChannelModel;->getImportance()Ljava/lang/Integer;
|
|
207
|
+
SPLapp/notifee/core/model/ChannelModel;->getLightColor()Ljava/lang/Integer;
|
|
208
|
+
SPLapp/notifee/core/model/ChannelModel;->getLights()Ljava/lang/Boolean;
|
|
209
|
+
SPLapp/notifee/core/model/ChannelModel;->getName()Ljava/lang/String;
|
|
210
|
+
SPLapp/notifee/core/model/ChannelModel;->getSound()Ljava/lang/String;
|
|
211
|
+
SPLapp/notifee/core/model/ChannelModel;->getVibration()Ljava/lang/Boolean;
|
|
212
|
+
SPLapp/notifee/core/model/ChannelModel;->getVibrationPattern()[J
|
|
213
|
+
SPLapp/notifee/core/model/ChannelModel;->getVisibility()I
|
|
214
|
+
Lapp/notifee/core/model/NotificationAndroidModel;
|
|
215
|
+
SPLapp/notifee/core/model/NotificationAndroidModel;-><init>(Landroid/os/Bundle;)V
|
|
216
|
+
SPLapp/notifee/core/model/NotificationAndroidModel;->fromBundle(Landroid/os/Bundle;)Lapp/notifee/core/model/NotificationAndroidModel;
|
|
217
|
+
SPLapp/notifee/core/model/NotificationAndroidModel;->getActions()Ljava/util/ArrayList;
|
|
218
|
+
SPLapp/notifee/core/model/NotificationAndroidModel;->getAsForegroundService()Ljava/lang/Boolean;
|
|
219
|
+
SPLapp/notifee/core/model/NotificationAndroidModel;->getAutoCancel()Ljava/lang/Boolean;
|
|
220
|
+
SPLapp/notifee/core/model/NotificationAndroidModel;->getBadgeIconType()Ljava/lang/Integer;
|
|
221
|
+
SPLapp/notifee/core/model/NotificationAndroidModel;->getCategory()Ljava/lang/String;
|
|
222
|
+
SPLapp/notifee/core/model/NotificationAndroidModel;->getChannelId()Ljava/lang/String;
|
|
223
|
+
SPLapp/notifee/core/model/NotificationAndroidModel;->getChronometerCountDown()Ljava/lang/Boolean;
|
|
224
|
+
SPLapp/notifee/core/model/NotificationAndroidModel;->getColor()Ljava/lang/Integer;
|
|
225
|
+
SPLapp/notifee/core/model/NotificationAndroidModel;->getColorized()Ljava/lang/Boolean;
|
|
226
|
+
SPLapp/notifee/core/model/NotificationAndroidModel;->getDefaults(Ljava/lang/Boolean;)Ljava/lang/Integer;
|
|
227
|
+
SPLapp/notifee/core/model/NotificationAndroidModel;->getFlags()[I
|
|
228
|
+
SPLapp/notifee/core/model/NotificationAndroidModel;->getForegroundServiceBehavior()I
|
|
229
|
+
SPLapp/notifee/core/model/NotificationAndroidModel;->getForegroundServiceType()I
|
|
230
|
+
SPLapp/notifee/core/model/NotificationAndroidModel;->getGroup()Ljava/lang/String;
|
|
231
|
+
SPLapp/notifee/core/model/NotificationAndroidModel;->getGroupAlertBehaviour()I
|
|
232
|
+
SPLapp/notifee/core/model/NotificationAndroidModel;->getGroupSummary()Ljava/lang/Boolean;
|
|
233
|
+
SPLapp/notifee/core/model/NotificationAndroidModel;->getInputHistory()[Ljava/lang/CharSequence;
|
|
234
|
+
SPLapp/notifee/core/model/NotificationAndroidModel;->getLightUpScreen()Ljava/lang/Boolean;
|
|
235
|
+
SPLapp/notifee/core/model/NotificationAndroidModel;->getLights()Ljava/util/ArrayList;
|
|
236
|
+
SPLapp/notifee/core/model/NotificationAndroidModel;->getLocalOnly()Ljava/lang/Boolean;
|
|
237
|
+
SPLapp/notifee/core/model/NotificationAndroidModel;->getLoopSound()Ljava/lang/Boolean;
|
|
238
|
+
SPLapp/notifee/core/model/NotificationAndroidModel;->getNumber()Ljava/lang/Integer;
|
|
239
|
+
SPLapp/notifee/core/model/NotificationAndroidModel;->getOngoing()Ljava/lang/Boolean;
|
|
240
|
+
SPLapp/notifee/core/model/NotificationAndroidModel;->getOnlyAlertOnce()Ljava/lang/Boolean;
|
|
241
|
+
SPLapp/notifee/core/model/NotificationAndroidModel;->getPressAction()Landroid/os/Bundle;
|
|
242
|
+
SPLapp/notifee/core/model/NotificationAndroidModel;->getPriority()I
|
|
243
|
+
SPLapp/notifee/core/model/NotificationAndroidModel;->getProgress()Lapp/notifee/core/model/NotificationAndroidModel$AndroidProgress;
|
|
244
|
+
SPLapp/notifee/core/model/NotificationAndroidModel;->getShortcutId()Ljava/lang/String;
|
|
245
|
+
SPLapp/notifee/core/model/NotificationAndroidModel;->getShowChronometer()Ljava/lang/Boolean;
|
|
246
|
+
SPLapp/notifee/core/model/NotificationAndroidModel;->getShowTimestamp()Ljava/lang/Boolean;
|
|
247
|
+
SPLapp/notifee/core/model/NotificationAndroidModel;->getSmallIcon()Ljava/lang/Integer;
|
|
248
|
+
SPLapp/notifee/core/model/NotificationAndroidModel;->getSmallIconLevel()Ljava/lang/Integer;
|
|
249
|
+
SPLapp/notifee/core/model/NotificationAndroidModel;->getSortKey()Ljava/lang/String;
|
|
250
|
+
SPLapp/notifee/core/model/NotificationAndroidModel;->getSound()Ljava/lang/String;
|
|
251
|
+
SPLapp/notifee/core/model/NotificationAndroidModel;->getStyle()Lapp/notifee/core/model/NotificationAndroidStyleModel;
|
|
252
|
+
SPLapp/notifee/core/model/NotificationAndroidModel;->getTicker()Ljava/lang/String;
|
|
253
|
+
SPLapp/notifee/core/model/NotificationAndroidModel;->getTimeoutAfter()Ljava/lang/Long;
|
|
254
|
+
SPLapp/notifee/core/model/NotificationAndroidModel;->getTimestamp()J
|
|
255
|
+
SPLapp/notifee/core/model/NotificationAndroidModel;->getVibrationPattern()[J
|
|
256
|
+
SPLapp/notifee/core/model/NotificationAndroidModel;->getVisibility()I
|
|
257
|
+
SPLapp/notifee/core/model/NotificationAndroidModel;->hasFullScreenAction()Ljava/lang/Boolean;
|
|
258
|
+
SPLapp/notifee/core/model/NotificationAndroidModel;->hasLargeIcon()Ljava/lang/Boolean;
|
|
259
|
+
SPLapp/notifee/core/model/NotificationAndroidModel;->hasStyle()Ljava/lang/Boolean;
|
|
260
|
+
Lapp/notifee/core/model/NotificationAndroidPressActionModel;
|
|
261
|
+
SPLapp/notifee/core/model/NotificationAndroidPressActionModel;-><init>(Landroid/os/Bundle;)V
|
|
262
|
+
SPLapp/notifee/core/model/NotificationAndroidPressActionModel;->fromBundle(Landroid/os/Bundle;)Lapp/notifee/core/model/NotificationAndroidPressActionModel;
|
|
263
|
+
SPLapp/notifee/core/model/NotificationAndroidPressActionModel;->getLaunchActivity()Ljava/lang/String;
|
|
264
|
+
SPLapp/notifee/core/model/NotificationAndroidPressActionModel;->getLaunchActivityFlags()I
|
|
265
|
+
SPLapp/notifee/core/model/NotificationAndroidPressActionModel;->getMainComponent()Ljava/lang/String;
|
|
266
|
+
Lapp/notifee/core/model/NotificationModel;
|
|
267
|
+
SPLapp/notifee/core/model/NotificationModel;-><init>(Landroid/os/Bundle;)V
|
|
268
|
+
SPLapp/notifee/core/model/NotificationModel;->fromBundle(Landroid/os/Bundle;)Lapp/notifee/core/model/NotificationModel;
|
|
269
|
+
SPLapp/notifee/core/model/NotificationModel;->getAndroid()Lapp/notifee/core/model/NotificationAndroidModel;
|
|
270
|
+
SPLapp/notifee/core/model/NotificationModel;->getBody()Ljava/lang/String;
|
|
271
|
+
SPLapp/notifee/core/model/NotificationModel;->getData()Landroid/os/Bundle;
|
|
272
|
+
SPLapp/notifee/core/model/NotificationModel;->getHashCode()Ljava/lang/Integer;
|
|
273
|
+
SPLapp/notifee/core/model/NotificationModel;->getId()Ljava/lang/String;
|
|
274
|
+
SPLapp/notifee/core/model/NotificationModel;->getSubTitle()Ljava/lang/String;
|
|
275
|
+
SPLapp/notifee/core/model/NotificationModel;->getTitle()Ljava/lang/String;
|
|
276
|
+
SPLapp/notifee/core/model/NotificationModel;->toBundle()Landroid/os/Bundle;
|
|
277
|
+
Lapp/notifee/core/utility/ExtendedListenableFuture;
|
|
278
|
+
SPLapp/notifee/core/utility/ExtendedListenableFuture;-><init>(Lcom/google/common/util/concurrent/ListenableFuture;)V
|
|
279
|
+
SPLapp/notifee/core/utility/ExtendedListenableFuture;->addListener(Ljava/lang/Runnable;Ljava/util/concurrent/Executor;)V
|
|
280
|
+
SPLapp/notifee/core/utility/ExtendedListenableFuture;->continueWith(Lcom/google/common/util/concurrent/AsyncFunction;Ljava/util/concurrent/Executor;)Lapp/notifee/core/utility/ExtendedListenableFuture;
|
|
281
|
+
SPLapp/notifee/core/utility/ExtendedListenableFuture;->get()Ljava/lang/Object;
|
|
282
|
+
SPLapp/notifee/core/utility/ExtendedListenableFuture;->isCancelled()Z
|
|
283
|
+
SPLapp/notifee/core/utility/ExtendedListenableFuture;->isDone()Z
|
|
284
|
+
Lapp/notifee/core/utility/ObjectUtils;
|
|
285
|
+
SPLapp/notifee/core/utility/ObjectUtils;->getInt(Ljava/lang/Object;)I
|
|
286
|
+
Lapp/notifee/core/utility/ResourceUtils;
|
|
287
|
+
SPLapp/notifee/core/utility/ResourceUtils;->getImageResourceId(Ljava/lang/String;)I
|
|
288
|
+
SPLapp/notifee/core/utility/ResourceUtils;->getResourceIdByName(Ljava/lang/String;Ljava/lang/String;)I
|
|
289
|
+
SPLapp/notifee/core/utility/ResourceUtils;->getResourceIdCache()Ljava/util/Map;
|
|
290
|
+
Lapp/notifee/core/utility/TextUtils;
|
|
291
|
+
SPLapp/notifee/core/utility/TextUtils;->fromHtml(Ljava/lang/String;)Landroid/text/Spanned;
|
|
292
|
+
SPLio/invertase/notifee/NotifeeEventSubscriber;->onForegroundServiceEvent(Lapp/notifee/core/event/ForegroundServiceEvent;)V
|
|
293
|
+
SPLio/invertase/notifee/NotifeeEventSubscriber;->onNotificationEvent(Lapp/notifee/core/event/NotificationEvent;)V
|
|
294
|
+
SPLio/invertase/notifee/NotifeeEventSubscriber$onForegroundServiceEvent$1;-><init>(Lapp/notifee/core/event/ForegroundServiceEvent;)V
|
|
295
|
+
Lio/invertase/notifee/HeadlessTask;
|
|
296
|
+
SPLio/invertase/notifee/HeadlessTask;->$r8$lambda$lOchEmSt20i3JAsg1StmGcpySRo(Lio/invertase/notifee/HeadlessTask;Lcom/facebook/react/bridge/ReactContext;)V
|
|
297
|
+
SPLio/invertase/notifee/HeadlessTask;-><clinit>()V
|
|
298
|
+
SPLio/invertase/notifee/HeadlessTask;-><init>()V
|
|
299
|
+
SPLio/invertase/notifee/HeadlessTask;->access$getSLastTaskId$cp()Ljava/util/concurrent/atomic/AtomicInteger;
|
|
300
|
+
SPLio/invertase/notifee/HeadlessTask;->createReactContextAndScheduleTask(Landroid/content/Context;)V
|
|
301
|
+
SPLio/invertase/notifee/HeadlessTask;->drainTaskQueue$lambda$4(Lio/invertase/notifee/HeadlessTask;Lcom/facebook/react/bridge/ReactContext;)V
|
|
302
|
+
SPLio/invertase/notifee/HeadlessTask;->drainTaskQueue(Lcom/facebook/react/bridge/ReactContext;)V
|
|
303
|
+
SPLio/invertase/notifee/HeadlessTask;->invokeStartTask(Lcom/facebook/react/bridge/ReactContext;Lio/invertase/notifee/HeadlessTask$TaskConfig;)V
|
|
304
|
+
SPLio/invertase/notifee/HeadlessTask;->startTask(Landroid/content/Context;Lio/invertase/notifee/HeadlessTask$TaskConfig;)V
|
|
305
|
+
Lio/invertase/notifee/HeadlessTask$$ExternalSyntheticLambda0;
|
|
306
|
+
SPLio/invertase/notifee/HeadlessTask$$ExternalSyntheticLambda0;-><init>(Lio/invertase/notifee/HeadlessTask;Lcom/facebook/react/bridge/ReactContext;)V
|
|
307
|
+
SPLio/invertase/notifee/HeadlessTask$$ExternalSyntheticLambda0;->run()V
|
|
308
|
+
Lio/invertase/notifee/HeadlessTask$Companion;
|
|
309
|
+
SPLio/invertase/notifee/HeadlessTask$Companion;-><init>()V
|
|
310
|
+
SPLio/invertase/notifee/HeadlessTask$Companion;-><init>(Lkotlin/jvm/internal/DefaultConstructorMarker;)V
|
|
311
|
+
SPLio/invertase/notifee/HeadlessTask$Companion;->getNextTaskId()I
|
|
312
|
+
SPLio/invertase/notifee/HeadlessTask$Companion;->getReactContext(Landroid/content/Context;)Lcom/facebook/react/bridge/ReactContext;
|
|
313
|
+
SPLio/invertase/notifee/HeadlessTask$Companion;->getReactHost(Landroid/content/Context;)Ljava/lang/Object;
|
|
314
|
+
Lio/invertase/notifee/HeadlessTask$GenericCallback;
|
|
315
|
+
Lio/invertase/notifee/HeadlessTask$TaskConfig;
|
|
316
|
+
SPLio/invertase/notifee/HeadlessTask$TaskConfig;-><init>(Ljava/lang/String;JLcom/facebook/react/bridge/WritableMap;Lio/invertase/notifee/HeadlessTask$GenericCallback;)V
|
|
317
|
+
SPLio/invertase/notifee/HeadlessTask$TaskConfig;->getReactTaskId()I
|
|
318
|
+
SPLio/invertase/notifee/HeadlessTask$TaskConfig;->getTaskConfig()Lcom/facebook/react/jstasks/HeadlessJsTaskConfig;
|
|
319
|
+
SPLio/invertase/notifee/HeadlessTask$TaskConfig;->setReactTaskId(I)V
|
|
320
|
+
Lio/invertase/notifee/HeadlessTask$invokeStartTask$1;
|
|
321
|
+
SPLio/invertase/notifee/HeadlessTask$invokeStartTask$1;-><init>(Lio/invertase/notifee/HeadlessTask;)V
|
|
322
|
+
SPLio/invertase/notifee/HeadlessTask$invokeStartTask$1;->onHeadlessJsTaskStart(I)V
|
|
323
|
+
Lio/invertase/notifee/NativeNotifeeModuleSpec;
|
|
324
|
+
SPLio/invertase/notifee/NativeNotifeeModuleSpec;-><init>(Lcom/facebook/react/bridge/ReactApplicationContext;)V
|
|
325
|
+
SPLio/invertase/notifee/NativeNotifeeModuleSpec;->getConstants()Ljava/util/Map;
|
|
326
|
+
Lio/invertase/notifee/NotifeeApiModule;
|
|
327
|
+
SPLio/invertase/notifee/NotifeeApiModule;->$r8$lambda$36-8dqmV6htQiC2mqKsRDKu7IK0(Lcom/facebook/react/bridge/Promise;Ljava/lang/Exception;Ljava/lang/Void;)V
|
|
328
|
+
SPLio/invertase/notifee/NotifeeApiModule;->$r8$lambda$L8emesPH0GMa5g3FYBeKVoKyVmg(Lcom/facebook/react/bridge/Promise;Ljava/lang/Exception;Landroid/os/Bundle;)V
|
|
329
|
+
SPLio/invertase/notifee/NotifeeApiModule;->$r8$lambda$ZdheoGOrE0u3JOYxSEMJIsFGib0(Lcom/facebook/react/bridge/Promise;Ljava/lang/Exception;Ljava/lang/Void;)V
|
|
330
|
+
SPLio/invertase/notifee/NotifeeApiModule;-><clinit>()V
|
|
331
|
+
SPLio/invertase/notifee/NotifeeApiModule;-><init>(Lcom/facebook/react/bridge/ReactApplicationContext;)V
|
|
332
|
+
SPLio/invertase/notifee/NotifeeApiModule;->addListener(Ljava/lang/String;)V
|
|
333
|
+
SPLio/invertase/notifee/NotifeeApiModule;->createChannel$lambda$7(Lcom/facebook/react/bridge/Promise;Ljava/lang/Exception;Ljava/lang/Void;)V
|
|
334
|
+
SPLio/invertase/notifee/NotifeeApiModule;->createChannel(Lcom/facebook/react/bridge/ReadableMap;Lcom/facebook/react/bridge/Promise;)V
|
|
335
|
+
SPLio/invertase/notifee/NotifeeApiModule;->displayNotification$lambda$13(Lcom/facebook/react/bridge/Promise;Ljava/lang/Exception;Ljava/lang/Void;)V
|
|
336
|
+
SPLio/invertase/notifee/NotifeeApiModule;->displayNotification(Lcom/facebook/react/bridge/ReadableMap;Lcom/facebook/react/bridge/Promise;)V
|
|
337
|
+
SPLio/invertase/notifee/NotifeeApiModule;->getInitialNotification$lambda$22(Lcom/facebook/react/bridge/Promise;Ljava/lang/Exception;Landroid/os/Bundle;)V
|
|
338
|
+
SPLio/invertase/notifee/NotifeeApiModule;->getInitialNotification(Lcom/facebook/react/bridge/Promise;)V
|
|
339
|
+
SPLio/invertase/notifee/NotifeeApiModule;->getTypedExportedConstants()Ljava/util/Map;
|
|
340
|
+
Lio/invertase/notifee/NotifeeApiModule$$ExternalSyntheticLambda3;
|
|
341
|
+
SPLio/invertase/notifee/NotifeeApiModule$$ExternalSyntheticLambda3;-><init>(Lcom/facebook/react/bridge/Promise;)V
|
|
342
|
+
SPLio/invertase/notifee/NotifeeApiModule$$ExternalSyntheticLambda3;->onComplete(Ljava/lang/Exception;Ljava/lang/Object;)V
|
|
343
|
+
Lio/invertase/notifee/NotifeeApiModule$$ExternalSyntheticLambda31;
|
|
344
|
+
SPLio/invertase/notifee/NotifeeApiModule$$ExternalSyntheticLambda31;-><init>(Lcom/facebook/react/bridge/Promise;)V
|
|
345
|
+
SPLio/invertase/notifee/NotifeeApiModule$$ExternalSyntheticLambda31;->onComplete(Ljava/lang/Exception;Ljava/lang/Object;)V
|
|
346
|
+
Lio/invertase/notifee/NotifeeApiModule$$ExternalSyntheticLambda5;
|
|
347
|
+
SPLio/invertase/notifee/NotifeeApiModule$$ExternalSyntheticLambda5;-><init>(Lcom/facebook/react/bridge/Promise;)V
|
|
348
|
+
SPLio/invertase/notifee/NotifeeApiModule$$ExternalSyntheticLambda5;->onComplete(Ljava/lang/Exception;Ljava/lang/Object;)V
|
|
349
|
+
Lio/invertase/notifee/NotifeeApiModule$Companion;
|
|
350
|
+
SPLio/invertase/notifee/NotifeeApiModule$Companion;-><init>()V
|
|
351
|
+
SPLio/invertase/notifee/NotifeeApiModule$Companion;-><init>(Lkotlin/jvm/internal/DefaultConstructorMarker;)V
|
|
352
|
+
Lio/invertase/notifee/NotifeeEventSubscriber;
|
|
353
|
+
SPLio/invertase/notifee/NotifeeEventSubscriber;-><clinit>()V
|
|
354
|
+
SPLio/invertase/notifee/NotifeeEventSubscriber;-><init>()V
|
|
355
|
+
SPLio/invertase/notifee/NotifeeEventSubscriber;->onForegroundServiceEvent(Lapp/notifee/core/event/ForegroundServiceEvent;)V
|
|
356
|
+
SPLio/invertase/notifee/NotifeeEventSubscriber;->onNotificationEvent(Lapp/notifee/core/event/NotificationEvent;)V
|
|
357
|
+
Lio/invertase/notifee/NotifeeEventSubscriber$Companion;
|
|
358
|
+
SPLio/invertase/notifee/NotifeeEventSubscriber$Companion;-><init>()V
|
|
359
|
+
SPLio/invertase/notifee/NotifeeEventSubscriber$Companion;-><init>(Lkotlin/jvm/internal/DefaultConstructorMarker;)V
|
|
360
|
+
Lio/invertase/notifee/NotifeeEventSubscriber$onForegroundServiceEvent$1;
|
|
361
|
+
SPLio/invertase/notifee/NotifeeEventSubscriber$onForegroundServiceEvent$1;-><init>(Lapp/notifee/core/event/ForegroundServiceEvent;)V
|
|
362
|
+
Lio/invertase/notifee/NotifeeInitProvider;
|
|
363
|
+
SPLio/invertase/notifee/NotifeeInitProvider;-><init>()V
|
|
364
|
+
SPLio/invertase/notifee/NotifeeInitProvider;->onCreate()Z
|
|
365
|
+
Lio/invertase/notifee/NotifeePackage;
|
|
366
|
+
SPLio/invertase/notifee/NotifeePackage;->$r8$lambda$GEmWUUXKlnP7lvCfY19-pg8c-ms()Ljava/util/Map;
|
|
367
|
+
SPLio/invertase/notifee/NotifeePackage;-><init>()V
|
|
368
|
+
SPLio/invertase/notifee/NotifeePackage;->getModule(Ljava/lang/String;Lcom/facebook/react/bridge/ReactApplicationContext;)Lcom/facebook/react/bridge/NativeModule;
|
|
369
|
+
SPLio/invertase/notifee/NotifeePackage;->getReactModuleInfoProvider$lambda$0()Ljava/util/Map;
|
|
370
|
+
SPLio/invertase/notifee/NotifeePackage;->getReactModuleInfoProvider()Lcom/facebook/react/module/model/ReactModuleInfoProvider;
|
|
371
|
+
Lio/invertase/notifee/NotifeePackage$$ExternalSyntheticLambda0;
|
|
372
|
+
SPLio/invertase/notifee/NotifeePackage$$ExternalSyntheticLambda0;-><init>()V
|
|
373
|
+
SPLio/invertase/notifee/NotifeePackage$$ExternalSyntheticLambda0;->getReactModuleInfos()Ljava/util/Map;
|
|
374
|
+
Lio/invertase/notifee/NotifeeReactUtils;
|
|
375
|
+
SPLio/invertase/notifee/NotifeeReactUtils;-><clinit>()V
|
|
376
|
+
SPLio/invertase/notifee/NotifeeReactUtils;-><init>()V
|
|
377
|
+
SPLio/invertase/notifee/NotifeeReactUtils;->flushPendingEvents()V
|
|
378
|
+
SPLio/invertase/notifee/NotifeeReactUtils;->isAppInForeground()Z
|
|
379
|
+
SPLio/invertase/notifee/NotifeeReactUtils;->promiseResolver(Lcom/facebook/react/bridge/Promise;Ljava/lang/Exception;)V
|
|
380
|
+
SPLio/invertase/notifee/NotifeeReactUtils;->promiseResolver(Lcom/facebook/react/bridge/Promise;Ljava/lang/Exception;Landroid/os/Bundle;)V
|
|
381
|
+
SPLio/invertase/notifee/NotifeeReactUtils;->sendEvent(Ljava/lang/String;Lcom/facebook/react/bridge/WritableMap;)V
|
|
382
|
+
SPLio/invertase/notifee/NotifeeReactUtils;->startHeadlessTask(Ljava/lang/String;Lcom/facebook/react/bridge/WritableMap;JLio/invertase/notifee/HeadlessTask$GenericCallback;)V
|