You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 15, 2023. It is now read-only.
OS : MacOs
Platform : android
Device: Samsung Galaxy S9
I am setting Dynamic shorcuts with this code,
QuickActions.setShortcutItems([
{
type: "Orders", // Required
title: "See your orders", // Optional, if empty, `type` will be used instead
subtitle: "See orders you've made",
icon: "Compose", // Icons instructions below
userInfo: {
url: "app://orders" ,// Provide any custom data like deep linking URL,
screenType:"Data",
screenData:"Data"
}
}
]);
but when I am getting data in popInitialAction it is having only url. while screenType and screenData are not there.
I didn't implement the android support and am not an android developer so it's not clear to me if this was an oversight or a limitation. I'm happy to review and accept PRs that add the functionality described above.
Sorry for the confusion. I'll throw something in the README to clear this up for now until support for that is added.
My current workaround is now to work only with the url param and add the parmas to that... like a common url with query params.
In my popInitialAction/listener I have to parse it then.
OS : MacOs
Platform : android
Device: Samsung Galaxy S9
I am setting Dynamic shorcuts with this code,
but when I am getting data in
popInitialAction
it is having onlyurl
. whilescreenType
andscreenData
are not there.is there anything I can do for this?
this is perfectly working for ios, issue is only on android.
The text was updated successfully, but these errors were encountered: