cengiz-pz / godot-android-deeplink-plugin

Enables application deep link functionality for Android apps
MIT License
6 stars 1 forks source link

Conflict with other plugins. #4

Open DanieL800-xe opened 3 weeks ago

DanieL800-xe commented 3 weeks ago

The Deeplink plugin is likely conflicting with the Share and AdMob plugins. In my android app, I use all three of your plugins, and if I close advertisement or close sharing, the app doesn't continue as expected but instead triggers the deeplink signal. I'm not a professional programmer, but I have a feeling that the issue isn't on my end. Can you please verify this?

cengiz-pz commented 2 weeks ago

Hi @DanieL800-xe, I use all five plugins & haven't had any conflicts. Could you please provide more information on the issue that you're experiencing, preferrably a minimal project where the issue is reproducible?

DanieL800-xe commented 2 weeks ago

I noticed that when I switch to another app and then reopen it, the same thing happens... it's as if the deeplink signal is triggered. However, this only occurs if the deeplink has already been activated in the app. If I open the app for the first time without a deeplink, everything works as it should... but once I open the deeplink, there are many instances where it triggers again. Maybe the issue really is on my end. I'll check it thoroughly.

cengiz-pz commented 2 weeks ago

@DanieL800-xe, once you're done processing the deeplink and don't need it anymore, call clear_data() to remove it from plugin cache.

DanieL800-xe commented 2 weeks ago

It works. Thank you very much !