12 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
137
views
Coroutine in Expo Module AsyncFunction
I've been trying to implement Coroutine in an Expo Module AsyncFunction as described here https://docs.expo.dev/modules/module-api/#kotlin-coroutines-. The one from the example works fine, but I need ...
0
votes
0
answers
44
views
Interdependent expo-modules cannot be built
I want to build multiple expo-modules, all of which serve specific purposes, and then have one module combine them all.
Ive setup a monorepo using npm and configured two expo-modules module-a and ...
user avatar
user12627919
1
vote
0
answers
393
views
How to make an expo module that uses react native vision camera?
My goal is to make an expo module to have my own functions to apply to frames coming from react native vision camera, similarly to existing plugins. However all the current plugins are not made using ...
0
votes
0
answers
172
views
Send a React Native event from iOS AppDelegate Subscribers
I'm developing an Expo application using the Modules API and iOS AppDelegate Subscribers.
I want to send a React Native event to JavaScript whenever the didReceiveRemoteNotification lifecycle method ...
1
vote
1
answer
498
views
How to reference Current Activity in ReactActivityLifecycleListener within a Expo Package?
I am currently developing an Expo module that utilizes Intents to receive content from other applications. My issue currently is that, while the app is open in the background, a share intent is ...
1
vote
0
answers
159
views
Android dynamic features on Expo modules
I have a project that needs to integrate an external library that requires a minSdkVersion of 30+. The problem is that I don't want to make my whole app min sdk version 30+ since I have maybe 15% of ...
1
vote
0
answers
141
views
Cocoapods vendored frameforks cause "Multiple commands produce ..." error
I am developing an Expo iOS module and need to use frameworks provided by a company. I have specified my framework files like this in the podspec file:
s.vendored_frameworks =
'Frameworks/EnQualify....
0
votes
1
answer
706
views
Handling android permission callback in module created by create-expo-module
I am implementing my custom expo module using create-expo-module. I need to request user for some permissions (notifications, bluetooth, location). There is a documentation about how to write custom ...
0
votes
1
answer
2k
views
Expo Go watermelonDB through @skam22/watermelondb-expo-plugin: NativeModules.WMDatabaseBridge is not defined
Working on an Expo Go mobile app, and I'm looking to use WatermelonDB for database. I'm hoping to use the @skam22/watermelondb-expo-plugin package (as opposed to @morrowdigital/watermelondb-expo-...
1
vote
0
answers
366
views
REACT-NATIVE Task :expo-modules-core:externalNativeBuildCleanRelease FAILED
I am a newbie to React Native. I was trying to build an APK in my project. I was successfully able to make APKs before in the current project. But recently I started getting the following error. I ...
7
votes
0
answers
1k
views
Using expo-modules with 3rd party local xcframework (iOS)
I'm trying to build a react-native wrapper module for the official Spotify SDK, using expo-modules. I've added the SDK in my .podspec file using s.vendored_frameworks. Example app's project pre-build ...
3
votes
2
answers
2k
views
Import local framework on expo module
I'm using documentation here to create my custom expo module.
npx create-expo-module FooModule
Using this instruction, for example on ios folder, only .swift files are generated.
I have to import a ...