It seems that Eclipse cannot find the third party libraries being used by the app even though I see them all in the libs folder under the package.For example, it cannot find the Crittercism, Google Analytics or Parse libraries. The import statements below all show a red X and when I click on the prompt to fix the import links, it says I have to do it manually:
import com.crittercism.app.Crittercism;
import com.google.analytics.tracking.android.EasyTracker;
import com.google.analytics.tracking.android.MapBuilder;
import com.parse.ParseException;
import com.parse.ParseObject;
import com.parse.ParseQuery;
My question is, how do I force Eclipse to look in the right folder, assuming it is not looking in the right place for the libraries. This is working source code from the developer which we used to create the apk and upload it to the Google Play Store, so I assume there is no issue with the code, but more so in the way the project is configured in Eclipse.