| /expo/packages/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/model/ |
| H A D | NotificationResponse.java | 10 public class NotificationResponse implements Parcelable { class 16 public NotificationResponse(NotificationAction action, Notification notification) { in NotificationResponse() method in NotificationResponse 33 public static final Creator<NotificationResponse> CREATOR = new Creator<NotificationResponse>() { 35 public NotificationResponse createFromParcel(Parcel in) { 36 return new NotificationResponse(in); 40 public NotificationResponse[] newArray(int size) { 41 return new NotificationResponse[size]; 50 protected NotificationResponse(Parcel in) { in NotificationResponse() method in NotificationResponse
|
| /expo/packages/expo-notifications/src/ |
| H A D | NotificationsEmitter.ts | 3 import { Notification, NotificationResponse } from './Notifications.types'; 85 listener: (event: NotificationResponse) => void 87 return emitter.addListener<NotificationResponse>( 106 export async function getLastNotificationResponseAsync(): Promise<NotificationResponse | null> {
|
| H A D | NotificationsEmitterModule.types.ts | 3 import { NotificationResponse } from './Notifications.types'; 6 getLastNotificationResponseAsync?: () => Promise<NotificationResponse | null>;
|
| H A D | useLastNotificationResponse.ts | 3 import { NotificationResponse } from './Notifications.types'; 44 NotificationResponse | null | undefined
|
| /expo/packages/expo-notifications/build/ |
| H A D | NotificationsEmitter.d.ts | 2 import { Notification, NotificationResponse } from './Notifications.types'; 64 …unction addNotificationResponseReceivedListener(listener: (event: NotificationResponse) => void): … 74 export declare function getLastNotificationResponseAsync(): Promise<NotificationResponse | null>;
|
| H A D | useLastNotificationResponse.d.ts | 1 import { NotificationResponse } from './Notifications.types'; 37 export default function useLastNotificationResponse(): NotificationResponse | null | undefined;
|
| H A D | NotificationsEmitterModule.types.d.ts | 2 import { NotificationResponse } from './Notifications.types'; 4 getLastNotificationResponseAsync?: () => Promise<NotificationResponse | null>;
|
| H A D | NotificationsEmitterModule.types.js.map | 1 …NotificationResponse } from './Notifications.types';\n\nexport interface NotificationsEmitterModul…
|
| /expo/packages/expo-notifications/android/src/main/java/expo/modules/notifications/service/interfaces/ |
| H A D | HandlingDelegate.kt | 4 import expo.modules.notifications.notifications.model.NotificationResponse 8 fun handleNotificationResponse(notificationResponse: NotificationResponse)
|
| /expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/expo/modules/notifications/service/interfaces/ |
| H A D | HandlingDelegate.kt | 4 import expo.modules.notifications.notifications.model.NotificationResponse 8 fun handleNotificationResponse(notificationResponse: NotificationResponse)
|
| /expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/notifications/service/interfaces/ |
| H A D | HandlingDelegate.kt | 4 import expo.modules.notifications.notifications.model.NotificationResponse 8 fun handleNotificationResponse(notificationResponse: NotificationResponse)
|
| /expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/expo/modules/notifications/service/interfaces/ |
| H A D | HandlingDelegate.kt | 4 import expo.modules.notifications.notifications.model.NotificationResponse 8 fun handleNotificationResponse(notificationResponse: NotificationResponse)
|
| /expo/packages/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/interfaces/ |
| H A D | NotificationListener.java | 6 import expo.modules.notifications.notifications.model.NotificationResponse; 27 default boolean onNotificationResponseReceived(NotificationResponse response) { in onNotificationResponseReceived()
|
| /expo/packages/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/ |
| H A D | NotificationManager.java | 13 import expo.modules.notifications.notifications.model.NotificationResponse; 24 private Collection<NotificationResponse> mPendingNotificationResponses = new ArrayList<>(); 52 for (NotificationResponse pendingResponse : mPendingNotificationResponses) { in addListener() 93 public void onNotificationResponseReceived(NotificationResponse response) { in onNotificationResponseReceived()
|
| /expo/packages/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/emitting/ |
| H A D | NotificationsEmitter.kt | 12 import expo.modules.notifications.notifications.model.NotificationResponse 20 private var lastNotificationResponse: NotificationResponse? = null 62 override fun onNotificationResponseReceived(response: NotificationResponse): Boolean { in onNotificationResponseReceived()
|
| /expo/packages/expo-notifications/android/src/main/java/expo/modules/notifications/service/delegates/ |
| H A D | ExpoHandlingDelegate.kt | 12 import expo.modules.notifications.notifications.model.NotificationResponse in <lambda>() 23 … protected var sPendingNotificationResponses: MutableCollection<NotificationResponse> = ArrayList() in <lambda>() 63 …(context: Context, broadcastIntent: Intent, notificationResponse: NotificationResponse): PendingIn… in <lambda>() 79 fun openAppToForeground(context: Context, notificationResponse: NotificationResponse) { in <lambda>() 127 override fun handleNotificationResponse(notificationResponse: NotificationResponse) { in <lambda>()
|
| /expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/expo/modules/notifications/service/delegates/ |
| H A D | ExpoHandlingDelegate.kt | 12 import expo.modules.notifications.notifications.model.NotificationResponse in <lambda>() 23 … protected var sPendingNotificationResponses: MutableCollection<NotificationResponse> = ArrayList() in <lambda>() 63 …(context: Context, broadcastIntent: Intent, notificationResponse: NotificationResponse): PendingIn… in <lambda>() 79 fun openAppToForeground(context: Context, notificationResponse: NotificationResponse) { in <lambda>() 127 override fun handleNotificationResponse(notificationResponse: NotificationResponse) { in <lambda>()
|
| /expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/notifications/service/delegates/ |
| H A D | ExpoHandlingDelegate.kt | 12 import expo.modules.notifications.notifications.model.NotificationResponse in <lambda>() 23 … protected var sPendingNotificationResponses: MutableCollection<NotificationResponse> = ArrayList() in <lambda>() 63 …(context: Context, broadcastIntent: Intent, notificationResponse: NotificationResponse): PendingIn… in <lambda>() 79 fun openAppToForeground(context: Context, notificationResponse: NotificationResponse) { in <lambda>() 127 override fun handleNotificationResponse(notificationResponse: NotificationResponse) { in <lambda>()
|
| /expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/expo/modules/notifications/service/delegates/ |
| H A D | ExpoHandlingDelegate.kt | 12 import expo.modules.notifications.notifications.model.NotificationResponse in <lambda>() 23 … protected var sPendingNotificationResponses: MutableCollection<NotificationResponse> = ArrayList() in <lambda>() 63 …(context: Context, broadcastIntent: Intent, notificationResponse: NotificationResponse): PendingIn… in <lambda>() 79 fun openAppToForeground(context: Context, notificationResponse: NotificationResponse) { in <lambda>() 127 override fun handleNotificationResponse(notificationResponse: NotificationResponse) { in <lambda>()
|
| /expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/host/exp/exponent/modules/universal/notifications/ |
| H A D | ScopedNotificationsHandler.kt | 6 import expo.modules.notifications.notifications.model.NotificationResponse 20 override fun onNotificationResponseReceived(response: NotificationResponse): Boolean { in onNotificationResponseReceived()
|
| /expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/host/exp/exponent/modules/universal/notifications/ |
| H A D | ScopedNotificationsHandler.kt | 6 import expo.modules.notifications.notifications.model.NotificationResponse 20 override fun onNotificationResponseReceived(response: NotificationResponse): Boolean { in onNotificationResponseReceived()
|
| /expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/host/exp/exponent/modules/universal/notifications/ |
| H A D | ScopedNotificationsHandler.kt | 6 import expo.modules.notifications.notifications.model.NotificationResponse 20 override fun onNotificationResponseReceived(response: NotificationResponse): Boolean { in onNotificationResponseReceived()
|
| /expo/android/expoview/src/main/java/versioned/host/exp/exponent/modules/universal/notifications/ |
| H A D | ScopedNotificationsHandler.kt | 6 import expo.modules.notifications.notifications.model.NotificationResponse 20 override fun onNotificationResponseReceived(response: NotificationResponse): Boolean { in onNotificationResponseReceived()
|
| H A D | ScopedNotificationsEmitter.kt | 6 import expo.modules.notifications.notifications.model.NotificationResponse 20 override fun onNotificationResponseReceived(response: NotificationResponse): Boolean { in onNotificationResponseReceived()
|
| /expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/expo/modules/notifications/notifications/emitting/ |
| H A D | NotificationsEmitter.java | 16 import expo.modules.notifications.notifications.model.NotificationResponse; 26 private NotificationResponse mLastNotificationResponse; 79 public boolean onNotificationResponseReceived(NotificationResponse response) { in onNotificationResponseReceived()
|