I want to use the SIFWorks ADK, a java library, with my appengine project. This is a complex library with 700 classes. I can get an example application for working in an application development environment. I do not want to be surprised later in development that some class that I need to use, but could not verify, is not dependent on a white list.
I used DependencyFinder to generate a list of dependencies, and it creates a huge list of classes, as well as things like java.util.* , Which I cannot check directly from the whitelist.
What is the best way to provide a complex library that is fully compatible with appengine?
source share