We're having an issue with a new RN app we published. Only two interactions are being logged:

<Stack.Navigator
screenListeners={{
focus: (e) => {
nrInteraction(e.target?.split('-')[0] as string)
}
}}
If we put console.log() there, it logs just fine on each new React screen, so that call should be working. However, New Relic only shows those "SplashActivity" and "ReactActivity" which sounds like the agent is picking up Java calls only. What could be the problem?
We're having an issue with a new RN app we published. Only two interactions are being logged:
If we put
console.log()there, it logs just fine on each new React screen, so that call should be working. However, New Relic only shows those "SplashActivity" and "ReactActivity" which sounds like the agent is picking up Java calls only. What could be the problem?