Sudhir R
Sudhir R

Reputation: 67

Implementing Twitter

I have an android application where I'm making use of twitter4j jar file. The problem is that if I search for twitter4j I get a number of jar files. I don't exactly know which is the jar file to be included. Could you guys help me identify it? Also, if you have a link to the jar file kindly post it.

Thanks.

Upvotes: 0

Views: 956

Answers (2)

JustCurious
JustCurious

Reputation: 1858

Did you add this jar file to your referenced libraries in your project properly? Assuming you are using eclipse, right click on the project, got to build path and add as external library this jar file. You may also need two other jar files for twitter such as signpost.

http://code.google.com/p/oauth-signpost/downloads/detail?name=signpost-core-1.2.1.1.jar

http://code.google.com/p/oauth-signpost/downloads/detail?name=signpost-commonshttp4-1.2.1.1.jar&can=2&q=

Upvotes: 0

Pascal MARTIN
Pascal MARTIN

Reputation: 401172

Did you try looking at its documentation ?


Taking a look at the homepage of its website, I see (quoting) :

How To Use
Just add twitter4j-core-2.2.3.jar to your application classpath

And there is a download section just below...


After that, you'll probably want to take a look at :

Upvotes: 1

Related Questions