1 package host.exp.exponent.notifications 2 3 import android.content.Context 4 import expo.modules.notifications.service.NotificationsService 5 import expo.modules.notifications.service.interfaces.PresentationDelegate 6 import host.exp.exponent.notifications.delegates.ScopedExpoPresentationDelegate 7 8 class ExpoNotificationsService : NotificationsService() { getPresentationDelegatenull9 override fun getPresentationDelegate(context: Context): PresentationDelegate = 10 ScopedExpoPresentationDelegate(context) 11 } 12