I’m trying to display a twitter timeline, but whenever I use the sample code on the documentation:
final UserTimeline userTimeline = new UserTimeline.Builder().screenName(“UserTimeline”).build();
final TweetTimelineListAdapter adapter = new TweetTimelineListAdapter(context, userTimeline);
It says java.lang.IllegalStateException: Must start TweetUi Kit in Fabric.with().
I thought you didn’t need to do Fabric.with because it is guest authentication. However, I also tried using Fabric.with(context, new TweetUi()), and this still gives me the same error.
I couldn’t find anybody with this sort of error. Any help would be greatly appreciated.