I'm not sure what I've got wrong. I have a twitter4j.properties file made, I've tried a constructor, no luck. I keep getting this error.
I'm using twitter4j-core-android-2.2.5.jar
java.lang.IllegalStateException: Authentication credentials are missing. See http://twitter4j.org/configuration.html for the detail.
String twitterpost = "testing";
Twitter twitter = new TwitterFactory().getInstance();
Status status = twitter.updateStatus(twitterpost);
System.out.println("Successfully updated the status to [" + status.getText() + "].");
The twitter4j.properties is in the root of the project, I also tried moving it around with no luck.
Thanks for any help.