I am using the Blackberry Facebook sdk from http://sourceforge.net/projects/facebook-bb-sdk/.
The PDF included in the zip file says that attach/include the two .jar files in the Project using eclipse and then use the methods to get user information from facebook.
Including the jar files is fine but when i call the methods and try running the app i get a Run time exception " java.lang.noClassDefFoundError ". No compilation error but a runtime error. I have tried cleaning up the BB 9900 Simulator but it doesn't work. I am pasting the code that causes the runtime exception.
String NEXT_URL = "http://m.facebook.com/login.php";
String APPLICATION_ID = "318512824926003";
APPLICATION_SECRET = "e0e532b55a4586ec2fb0eddf4eed12b1";
String[] PERMISSIONS = Facebook.Permissions.USER_DATA_PERMISSIONS;
ApplicationSettings as = new ApplicationSettings(NEXT_URL, APPLICATION_ID, APPLICATION_SECRET, PERMISSIONS);
Facebook fb = Facebook.getInstance(as);
Inserting the above code causes the runtime exception. Many users have told that this works but have not provided a simple and end solution. So please help.
Thank you.