I'm trying to implement Deep Linking in my Expo-React Native app. I have the following configuration on app.json but I only can open the app with the link containing the pathPrefix /home.
"intentFilters": [
{
"action": "VIEW",
"data": [
{
"scheme": "https",
"host": "api.myApp.us",
"pathPrefix": "/home"
},
{
"scheme": "https",
"host": "api.myApp.us",
"pathPrefix": "/balance"
},
{
"scheme": "https",
"host": "api.myApp.us",
"pathPrefix": "/charge"
}
],
"category": [
"BROWSABLE",
"DEFAULT"
]
}
],
What is the correct way to configure more than one pathPrefix? Thank you!