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
When I launch email opening from my react native application, this package returns the following message "not_available". Faced with this problem, I put this portion of code as a comment if (list == null || list.size() == 0) { callback.invoke("not_available"); return; }
and everything works fine again. Does this solution work for you? If not, is there another solution for this problem?
The text was updated successfully, but these errors were encountered:
this solution with device have only the gmail app doesn't return anything, so the problem of this package is to get access to the gmail app. inside RNMailModule.java, I replace this code:
The idea is to force checkout the gmail app with this line if the list is empty : Intent intent = manager.getLaunchIntentForPackage("com.google.android.gm");
When I launch email opening from my react native application, this package returns the following message "not_available". Faced with this problem, I put this portion of code as a comment
if (list == null || list.size() == 0) { callback.invoke("not_available"); return; }
and everything works fine again. Does this solution work for you? If not, is there another solution for this problem?
The text was updated successfully, but these errors were encountered: