Github user shankari commented on the issue: https://github.com/apache/cordova-android/pull/358 Note that the multi-part handling appears to be a regression. When I was on android@5.1.1, the email composer plugin, which returns a multi-part result from `isAvailable` worked. When I upgraded to android@6.1.2, it stopped working. https://github.com/shankari/cordova-plugin-email-composer/blob/master/src/android/EmailComposer.java#L112 ``` List<PluginResult> messages = new ArrayList<PluginResult>(); messages.add(new PluginResult(PluginResult.Status.OK, available[0])); messages.add(new PluginResult(PluginResult.Status.OK, available[1])); PluginResult result = new PluginResult( PluginResult.Status.OK, messages); ``` Note further that multipart messages seem to be handled just fine in `encodeAsMessageHelper` (and, by implication, in `encodeAsMessage`) but not in `encodeAsJsMessage`. Is this due to the switch in the default bridge?
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. --- --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org For additional commands, e-mail: dev-h...@cordova.apache.org