I am trying to send App Events from Hybrid mobile app(cordova). Through Facebook Pixel event can be sent but as stated by this blog - "Sending App Events in the context of a mobile application can provide a number of advantages over sending pixel events".
Events for hybrid mobile apps as per this facebook documentation mentions it is possible to convert Facebook Pixel event into App Events. The total code change required in your application is two lines (one native, one web).
For web fbq('init', ); fbq('set', 'mobileBridge', , );
For Native: android: AppEventsLogger.augmentWebView(, )
ios: [FBSDKAppEvents augmentHybridWKWebView:];
So my question is where to updated this native part code in case of android and ios in cordova app?