I am not an Android expert, but I need to use the Android-SDK byte code for some experiments.
I compiled the source of Androids, but it is surprising that it outputs the same SDK, which basically contains lame stubs that throw exceptions.
As you know, the android.jar file, which is included in the development package, contains stubs, and all methods in all classes just throw a new RuntimeException ("stub"); The purpose of this SDK is only to allow developers to create against android.jar in Eclipse and run their programs on devices / emulators where the actual SDK is located.
I separated java files from the Android source for the SDK, but I did not manage to compile them. I was wondering if there is a way to do this or retrieve them from devices. My ultimate goal is to sort Android applications on regular JVMs and run them on an emulator or Dalvik.
source share