applicationDidBecomeActive not firing in iOS Ionic app

I’m trying to add the Facebook SDK to my Cordova app to track installs. In Facebook App Ads Setup they require that you add

  • (void)applicationDidBecomeActive:(UIApplication *)application {
    [FBSDKAppEvents activateApp];
    }

I added that snippet of code to my AppDelegate.m and included an NSLog and it doesn’t ever get called. Any help would be greatly appreciated.

Have you found the solution to this?