Closed robindijkhof closed 4 years ago
This calls mResult.success(null); from the onActivityForResult method. This is called when the user has completed sending the mail.
mResult.success(null);
onActivityForResult
Had to remove intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);. See this first and second answer.
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Fixes: #16
This calls
mResult.success(null);
from theonActivityForResult
method. This is called when the user has completed sending the mail.Had to remove
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
. See this first and second answer.