I get the following error when building my Expo app:
Android build failed with 'no value for <appAuthRedirectScheme> is provided'
Is there any way to set this without ejecting the whole app to edit the manifest files?
I tried adding the following to the app.json
but still get the same error:
"intentFilters": [
{
"action": "VIEW",
"data": [
{
"scheme": "com.limislogger.app"
}
],
"category": [
"BROWSABLE",
"DEFAULT"
]
}
]
},