Maxim Chemerisuk
Maxim Chemerisuk
@collinswilson have you tried to use `getDynamicLink` to retrieve deep link data after app is started?
Plugin namespace is `cordova.plugins.firebase.dynamiclinks`, not `cordova.plugins.firbase.dynamicLinks`
@marshall86 please paste full build log here.
@jacobg thanks for the link, sad news indeed.
What `cordova-ios` version do you have?
@phiasco12 Try this code instead ```js cordova.plugins.firebase.messaging.requestPermission().then(function() { cordova.plugins.firebase.messaging.getToken().then(function(token) { alert("Device token", token); }).catch(function(error){ alert(error.message); }); }); ```
We can upgrade google-services but can't use fixed version for tools dependency. Reasoning https://github.com/chemerisuk/cordova-support-google-services/pull/27#issuecomment-546850589
@msimkunas it makes sense to add such feature. Let me know If you can help with the implementation or sponsor development.
@Hitman666 have you tried to use `console.log` instead of `alert`?
@Hitman666 the install is typical - just add `GoogleService-Info.plist` file into `Resources`. Well, behind the scenes I set `devMode` flag if config `ttl` is zero. Try code below: ```js cordova.plugins.firebase.config.update(0).then(function()...