I’d like to set the tweet text programmatically when using TwitterKit Tweet Composer. I could not find any method how to do that. I’m using the following code:
final Intent intent = new ComposerActivity.Builder(getActivity())
.session(session)
.createIntent();
startActivity(intent);
How can I set the tweet text programmatically? Thanks in advance