Closed gangadharuseline closed 2 years ago
Try this instead in your AppDelegate.m
initialize
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
[[FBSDKApplicationDelegate sharedInstance] application:application didFinishLaunchingWithOptions:launchOptions];
// ... your other code
}
handle links
- (BOOL)application:(UIApplication *)application
openURL:(NSURL *)url
options:(NSDictionary<UIApplicationOpenURLOptionsKey,id> *)options
{
// https://developers.facebook.com/docs/ios/getting-started/#app-delegate
BOOL handlFacebook = [[FBSDKApplicationDelegate sharedInstance] application:application openURL:url options:options];
BOOL handleLinkingManager = [RCTLinkingManager application:application openURL:url options:options];
return handlFacebook || handleLinkingManager;
}
Thanks for the reply @rnike . No Luck with the above change. Same issue
I'm curious why you have links prefix with cydia, filza, undecimus ... , those looks like jailbreak stuff for me, perhaps you can try something described in this post
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
🐛 Bug Report
On integrating react-native-fbsdk-next in IOS, App is opening with the blank screen
Goal Our Goal is to track App Installs from the facebook Ads.
To Reproduce
I followed below article to integrate the react-native-fbsdk-next. https://www.vairix.com/tech-blog/react-native-facebook-sdk-integration.
npx yarn install react-native-fbsdk-next
npx pod-install
In Info.plist,
Added the below lines in AppDelegate.m
I was trying to run the app from xCode in my personal IPhone.(iPhone 12 Pro - OS version - 15.1.1)
The below is the xCode Log
Expected Behavior
App should load properly and work as expected. And be able to track the App Installs from Facebook Ads.
Environment
"react-native": "0.63.2", Xcode version 13.0 SDK version react-native-fbsdk-next - 6.1.1