2

In Podfile, when using use_frameworks! globally to integrate swift pods in my react native project, Firebase pod files starts giving error Firebase pods:-

pod 'Firebase'
pod 'Firebase/Messaging'

Error :-

'FirebaseCore/FirebaseCore.h' file not found in RNFIRMessaging.h

issue gets resolved when comment out use_frameworks! in podfile but then i am unable to install swift pods. also tried :modular_headers => true for specific swift pods but pod file is not installing.

Swift pods i am trying to install are :-

 pod 'Kite-Print-SDK'
 pod 'PayPal-iOS-SDK/Core'

please help me out to resolve this issue..

Kaushik Makwana
  • 1,329
  • 2
  • 14
  • 24
zack lombard
  • 21
  • 1
  • 4

2 Answers2

1

Please consider check at edit scheme ->Build -> check if Find Implicit Dependencies. if not enable please enable it and rerun. enter image description here

Monyneath MOL
  • 209
  • 2
  • 12
-1

I actually had a similar problem, my solution was to change the code manually wherever there was that error.

change

import <FirebaseCore/FirebaseCore.h>

to

import <FirebaseCore.h>
Doctor Strange
  • 189
  • 1
  • 3
  • 12