(cherry picked from commit cd4dc9528b)
Co-authored-by: t0mm0 <dev@onairsoftware.co.uk>
This commit is contained in:
parent
8e4f19f3ea
commit
5c79b5152e
1 changed files with 5 additions and 0 deletions
|
|
@ -167,6 +167,11 @@ public class ShareModule extends ReactContextBaseJavaModule {
|
|||
map.putString("type", type);
|
||||
map.putBoolean("isString", false);
|
||||
items.pushMap(map);
|
||||
|
||||
map = Arguments.createMap();
|
||||
map.putString("value", extra);
|
||||
map.putBoolean("isString", true);
|
||||
items.pushMap(map);
|
||||
}
|
||||
} else if (Intent.ACTION_SEND_MULTIPLE.equals(action)) {
|
||||
ArrayList<Uri> uris = intent.getParcelableArrayListExtra(Intent.EXTRA_STREAM);
|
||||
|
|
|
|||
Loading…
Reference in a new issue