0

I’m trying to integrate Flurry using CocoaPods in my Swift project. "pod install" downloads Flurry in the project files, but I can’t set a correct path in the bridge-file for FlurrySDK (everything is fine with all other obj-c dependencies).

enter image description here

Where/how can I find a correct import path?

Max
  • 636
  • 3
  • 13
  • 28
  • 1
    Possible duplicate of [Bridging Header for Flurry.h not working with Pod](https://stackoverflow.com/questions/31705925/bridging-header-for-flurry-h-not-working-with-pod) – Nitish Jul 06 '18 at 11:00

1 Answers1

1

When you are using latest CocoaPod to install external dependencies to Xcode Project, you don't really need the bridging header to expose Objective-C methods to Swift. See below screenshots once to understand it clearly.

Creating and Installing Pods.

enter image description here

Importing Flurry SDK in a Swift class.

enter image description here

Hope this helped. Thanks.

onCompletion
  • 6,500
  • 4
  • 28
  • 37