Chris Stillwell

Results 3 comments of Chris Stillwell

I get this same issue immediately after calling: final TweetTimelineListAdapter adapter = new TweetTimelineListAdapter.Builder(context).setTimeline(userTimeline).build(); My logcat prints the following while the above command is running. ``` W: Could not call...

@JEKos That isn't much of a fix if you are trying to load a timeline on the main activity as you will still have to wait the 20+ seconds for...

Version 3.1.1 fixed the issue for me. I had to update my code to the following TwitterConfig config = new TwitterConfig.Builder(this) .logger(new DefaultLogger(Log.DEBUG)) .twitterAuthConfig(new TwitterAuthConfig(getTwitterKey(), getTwitterSecret())) .debug(true) .build(); Twitter.initialize(config); And...