Juwan Wheatley
Juwan Wheatley
It depends on the app you're trying to link to. Some apps have documentation on deep-linking into them via their URL scheme like Lyft: https://developer.lyft.com/docs/deeplinking
If all you know is the package name, and your only platform is Android, you could try sending an intent: https://reactnative.dev/docs/linking#sendintent Untested Example: ```js Linking.sendIntent('com.justeat.app.uk'); ```
Resurrecting this because it seems that `@expo/cli` won't be considered "stable" for a while, and this is more of a bugfix than a new feature
Update: Expo can use rn-cli.config.js, but it would still be nice to not have to add config
@coderabbitai review