Your code is exposing ExpoQuickActions using globalThis.expo.modules.ExpoQuickActions.
In runtime, it is undefined, falling back to no-op code defined in buid/index.js (e.g. isSupported always returns false).
I had to call requireNativeModule('ExpoQuickActions') to be able to use your plugin.
I am uncertain this may be related to expo/expo#36551 or expo/expo#36375.
Or if this is a issue with my configuration.
If you need any more clarification, let me know.
Your code is exposing
ExpoQuickActionsusingglobalThis.expo.modules.ExpoQuickActions.In runtime, it is undefined, falling back to no-op code defined in
buid/index.js(e.g. isSupported always returns false).I had to call
requireNativeModule('ExpoQuickActions')to be able to use your plugin.I am uncertain this may be related to expo/expo#36551 or expo/expo#36375.
Or if this is a issue with my configuration.
If you need any more clarification, let me know.