FuseExample_Using_APNS_and_Firebase_Together Example

Hi

I’m trying to implement Push Notifications in my project. When compiling and running on device both compound projects: Fuse.APNS and Fuse.Firebase, they work ok.

But the FuseExample_Using_APNS_and_Firebase_Together example is throwing me this error on OSX:

```Module ‘Firebase’ not found````
file

I think it’s some issue with a project path, but i’m not figure out yet.

What I’m missing? The specified projects do exists at their paths.

This is my uno project:

{
  "Packages": [
    "Fuse",
    "FuseJS",
    "Fuse.BasicTheme",
    "Fuse.PushNotifications"
  ],
  "Projects": [
    "../Fuse.Firebase/src/Firebase.Notifications.Android/Firebase.Notifications.Android.unoproj",
    "../Fuse.APNS/src/Fuse.APNS.unoproj"
  ],
  "iOS": {
    "SystemCapabilities": {
      "Push": true
    },
    "PushNotifications": {
        "RegisterOnLaunch": false
    }
  },
  "Android": {
    "Package": "gob.queretaro.NotifExample",
    "NotificationIcon": {
      "LDPI": "Foo.png",
      "MDPI": "Foo.png",
      "HDPI": "Foo.png",
      "XHDPI": "Foo.png",
      "XXHDPI": "Foo.png",
      "XXXHDPI": "Foo.png"
    },
  },
  "Firebase": {
    "GoogleServices": {
      "Android": "google-services.json",
      "iOS": "GoogleService-Info.plist"
    }
  },
  "Includes": [
    "*",
    "assets/thing.png:Bundle"
  ]
}

I see a reference in the uno project:

  "Firebase": {
    "GoogleServices": {
      "Android": "google-services.json",
      "iOS": "GoogleService-Info.plist" // << Where is this file?
    }
  }

Where is this file suposed to be?

Hector Lizarraga wrote:

I see a reference in the uno project:

  "Firebase": {
    "GoogleServices": {
      "Android": "google-services.json",
      "iOS": "GoogleService-Info.plist" // << Where is this file?
    }
  }

Where is this file suposed to be?

It’s supposed to be in your project root, after you’ve followed the setup guide, in particular the iOS app configuration part.

Thanks a lot Uldi, now it’s working