Existing dependency injection solutions use reflection for processing the annotations, but still need the resources to be declared. See this for an example of the former: http://code.google.com/p/android-di/source/browse/src/main/java/com/googlecode/android_di/DiActivity.java
If you are using Ant to build your artifacts, you could read the contents of your source directory using Bash or Java, and use this to regenerate the full hierarchy of classes automatically during each build. This might make things tricky if you rely on heavily on the Eclipse IDE though, since the list might be out of date until you run another Ant build.
Another option might be to process the AndroidManifest file using the AssetManager, but you would be limited to the resources declared in that file. The compiled classes themselves are in-lined and optimised in the classes.dex file, and as such you're unlikely to get much useful information from it.