Hello,
I'm trying to share an image combined with some text and for some reason it's only one of them that appear each time.
// Shows only text:
new OmegaIntentBuilder(OverViewActivity.this)
.share()
.text("some text")
.bitmap(bitmap)
.createIntent();
// Shows image:
new OmegaIntentBuilder(OverViewActivity.this)
.share()
.bitmap(bitmap)
.createIntent();