Is there a way to create a Timeline Bundle card using the GDK?
I'm currently creating a Timeline card this way:
mLiveCard = mTimelineManager.createLiveCard(LIVE_CARD_ID);
mLiveCard.setViews(views);
mLiveCard.publish(LiveCard.PublishMode.REVEAL);
This creates a single Live card in the Timeline. I tried adding another with the same TAG, thinking it would bundle them together and the most recent will be the Bundle Cover card, but it didn't do the trick.
I looked at the docs, and all I could find is how to do it using the Mirror API. So is there a way to create a Bundle card using the GDK? Or is this only available through the Mirror API? Thanks.