-1

I would like to implement the Firebase In-App Messaging feature in my application. Documentation is available at https://firebase.google.com/docs/in-app-messaging/get-started?platform=ios

To implement that feature I installed a library in my project using the below pod.

pod 'FirebaseInAppMessaging'

After installation, I got Property has a previous declaration error.

error screenshot

I don't know how to fix this issue, If anyone has an idea please let me know.

Tushar Lathiya
  • 940
  • 9
  • 26

2 Answers2

1

FirebaseInAppMessaging is in beta and that needs to be acknowledged in the Podfile with something like:

pod 'FirebaseInAppMessaging', "> 10.12-beta"

Paul Beusterien
  • 27,542
  • 6
  • 83
  • 139
0

Remove from Podfile and add by packages:

target -> file -> add Packages -> search url => https://github.com/firebase/firebase-ios-sdk.git -> add Package

enter image description here

wanted
  • 41
  • 3