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
LaunchIntent = new Intent();
if(params.has("intent")) {
ComponentName ci = new ComponentName(cordova.getActivity().getPackageName(), params.getString("intent"));
LaunchIntent.setComponent(ci);
}
I tried updating the plugin and now just setting "intent" stopped working. By checking the code I discovered that this part is causing the problem. Why set the component using cordova.getActivity().getPackageName()? Now I need to specify the "component" property because the activity I am trying to start is not from my app. Isn't new Intent(intentString); the right way?
The text was updated successfully, but these errors were encountered:
I tried updating the plugin and now just setting "intent" stopped working. By checking the code I discovered that this part is causing the problem. Why set the component using cordova.getActivity().getPackageName()? Now I need to specify the "component" property because the activity I am trying to start is not from my app. Isn't new Intent(intentString); the right way?
The text was updated successfully, but these errors were encountered: