cordova-plugin-firebase-dynamiclinks icon indicating copy to clipboard operation
cordova-plugin-firebase-dynamiclinks copied to clipboard

IOS Empty Values when app is not background

Open mateusduraes opened this issue 5 years ago • 2 comments

Hi, in general, this plugin is working well.

But, I found a bug on IOS that happens only when the app is completely closed (not in background).

The function callback is executed, but, the values are empty.

image

await this.platform.ready()
this.firebaseDynamicLinks.onDynamicLink().subscribe(data => {
  console.log(data) // empty values
  this.handleDynamicLink(data.deepLink)
})

In this way. I'm not able to redirect the user to a specific content inside my app.

Can you please help me? Thank you!!

mateusduraes avatar Oct 09 '19 09:10 mateusduraes

I encountered same issue. Did you solve it @mateusduraes ?

luboslav avatar Jan 17 '20 11:01 luboslav

I had the same issue and it was caused by a conflict with cordova-plugin-firebasex.

tzappia avatar Jun 02 '20 20:06 tzappia