On Nov 8, 7:58 am, Filipe Abrantes <[EMAIL PROTECTED]> wrote: > I understand the binder kernel driver will be necessary (probably the > whole android kernel is recommended no?), but I didn't understand the > main entry part of your explanation hackbod. Can you please elaborate > a bit more or give a concrete example of what you mean.
Well look at any Android application: there is no main(). You can't just run it. You need to tell the system to launch a particular component in it, which results in it forking a process, loading the .apk into it, and instantiating and managing the component being launched. You can look at the "am" command in a running system to see what it feels like to "launch" an .apk, which is actually a request to start a particular activity in it. --~--~---------~--~----~------------~-------~--~----~ unsubscribe: [EMAIL PROTECTED] website: http://groups.google.com/group/android-porting -~----------~----~----~----~------~----~------~--~---
