I'm currently working on a small project. The first step is to pull tweets from given IDs using the twitter4j API. However, my issue is this error:
TweetCleaner.java:14: error: package twitter4j does not exist
whenever I attempt to compile my code from the command line:
javac -classpath twitter4j-core-4.0.4.jar MyProgram.java
The above command, however, does not do the trick.
I am using Eclipse and I've added the twitter4j jar files to my Libraries.
Any advice would be greatly appreciated.