You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
code for permissions to access (calendar,photo gallery,camera,bluetooth,device location,speech recognization,contacts,background notification) in ios/app.xcodeproj/app/Info.plist file
+ field name = ~/Documents/FacebookSDK , value="recursive"
+ field name = $(PROJECT_DIR)/Frameworks , value="recursive"
==============================================
Following Header Search Paths added at "ios/app.xcodeproj -> Build Settings -> Header Search Paths" , for react , (fbsdk,keyboard manager,splash screen - node modules) and its value should be recursive
==============================================
+ field name = $(SRCROOT)/../node_modules/react-native-fbsdk/ios/RCTFBSDK , value="recursive"
+ field name = $(SRCROOT)/../node_modules/react-native-keyboard-manager/ios , value="recursive"
+ field name = $(SRCROOT)/../node_modules/react-native-splash-screen/ios , value="recursive"
Fonts and keyboardManager.bundle added by following steps
+ Add 2 Groups in "ios/app.xcodeproj/" named "fonts" , "Resources"
==============================================
1. placed fonts from app/src/assets/fonts in "ios/app.xcodeproj/fonts" , then select all fonts from that folder and drag & droped to Build Phases -> Copy Bundle Resources , fonts path will automatically be added by this step for ios
2. placed IQKeyboardManager.bundle from app/node_modules/react-native-keyboard-manager/ios/IQKeyboardManager/Resources to ios/app.xcodeproj/Resources , this step will automatically add path in ios/app.xcodeproj -> Build Phases -> Copy Bundle Resources
Google Map added by following steps
======================== Run Following Commands ==============================
sudo gem install cocoapods
cd ios
pod init
Placed following code in podfile at "app/ios/Podfile"
==============================================
pod 'GoogleMaps', '= 2.5.0'
========================== Run Command ==================================
pod install
drag and droped "AirGoogleMaps , AirMaps folders" from "app/node_modules/react-native-maps/lib/ios/AirGoogleMaps" & "app/node_modules/react-native-maps/lib/ios/AirGoogleMaps" to path "ios/app.xcodeproj/Framework/"
==============================================
Add Mapkit at path "ios/app.xcodeproj -> Build Phases -> +Added MapKit.framework , this step will automatically add mapkit from ios sdk
==============================================
post adding react native maps from pod , run "app.xcworkspace"