-
Notifications
You must be signed in to change notification settings - Fork 2.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[📚] New setup guide for iOS Credentials in RN 0.77 #8248
Comments
Hi there - please just hit the edit button top right of the page and propose a change |
@mikehardy I apologize, as I’m new to React Native and am unsure how to make the change. 😁 |
Created a PR here #8251 |
Thank you for your guidance and PR. Similarly, do you have a guide to enable Multidex on Swift? Similarly, do you have a guide to configure Cloud Messaging in Swift? Or was the problem solved from a more fundamental point in RN 0.77? I couldn't find any documentation on this. I noticed that the documentation of rnfirebase.io is old. I'm currently trying to update ReactNative 0.72 to 0.77, so I need to adapt many packages back to 0.77. |
The documentation on rnfirebase.io is as new as we have it, if there is something out of date there is an edit button top right of every page and the github PR flow in their web UI for text changes is trivial. I imagine since you mention react-native 0.77 you have noticed that react-native now uses AppDelegate.swift vs .mm. Please feel free to post a PR Multidex was a workaround for old Android devices that are no longer supported, and we may all happily forget about multidex forever. And you never ever needed to think about it for iOS, it was an Android thing. You will never need it with modern Android. |
Hi,
Thanks in advance for your advice. |
Please can you guys update this and the docs as soon as possible, cause we are stuck here. |
This is the updated Doc of react native 0.77 with firebase. How can you modify appdelegate.swift to integrate the firebaseuse this to import firebase import Firebase use this to initialize firebase |
App started crashing after FirebaseApp.configure() "@react-native-firebase/app": "^21.7.2", Do I also need to change Podfile |
Please mention your podfile here |
Podfile require Pod::Executable.execute_command('node', ['-p', platform :ios, min_ios_version_supported linkage = ENV['USE_FRAMEWORKS'] target 'bossapp' do use_react_native!( #\ use_frameworks! :linkage => :static rn_maps_path = "../node_modules/react-native-maps" post_install do |installer| Here it is |
Starting with RN 0.77
/ios/{projectName}/AppDelegate.mm
is removed and changed toAppDelegate.swift
The text was updated successfully, but these errors were encountered: