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````
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"
]
}