I've searched everywhere I could for a solution to my problem an I couldn't find one, so I hope there's someone outhere who can help me.
I have a .jar library that I want to include into my project, I've followed a fews guides I found, but no one has worked for me so far, despite the fact that I can compile and generate my APK.
After installing the APK and launching the app, when a class member is called (the one from the library I want to import), my app crashes, and logcat gave me this :
Could not find class 'net.rdrei.android.dirchooser.DirectoryChooserActivity', referenced from method com.azsde.myApp.Settings$1.onPreferenceClick I then decompiled my apk because I was curious to see if the class has been included or not, and I found that it has not be included in my apk, here's a the result of a tree command listing my files:
Here are my Java Build Path settings:
What did I do wrong and why isn't my library included in my APK?
