I am integrating my app with fabric for android Twitter kit and i am showing tweets from my collection as follows
// Collection "Fabric Picks"
final CollectionTimeline timeline = new CollectionTimeline.Builder()
.id(569961150045896704L)
.build();
I always add tweets to the collection manually which is tiresome since i now need to add large number of tweets. The Collections documentation says that you can add tweets programmatically. However i have not seen any documentation or example on how to add tweets programmatically.
Could anyone suggest a way in which i could add tweets to my collection programmatically?