Hi,
I'm trying to run my application code using dalvik from the command line. According to some forums online, you can create a java project, package it into a jar and use some tools to convert the class files to dex files. Then you can use Dalvik to run this application, but ofcourse one of you're java files needs to have an entry point or main() function.
Now for an android App, the .apk file contains my class files or dex files. But none of them have a main() function. So is there any other entry point that I can use to run these class files?
Thanks,
Vivek

