Advertisement
Guest User

Untitled

a guest
Jan 21st, 2020
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #include "AppDelegate.h"
  2. #include "GeneratedPluginRegistrant.h"
  3.  
  4. - (BOOL)application:(UIApplication *)application
  5.     didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
  6.   [GeneratedPluginRegistrant registerWithRegistry:self];
  7.   // Override point for customization after application launch.
  8.   return [super application:application didFinishLaunchingWithOptions:launchOptions];
  9. }
  10.  
  11. =================================================================================================
  12. #import <FBSDKCoreKit/FBSDKCoreKit.h>
  13.  
  14. - (BOOL)application:(UIApplication *)application
  15.     didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
  16.  
  17.   [[FBSDKApplicationDelegate sharedInstance] application:application
  18.     didFinishLaunchingWithOptions:launchOptions];
  19.   // Add any custom logic here.
  20.   return YES;
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement