java - Multiple Entry Points -
i have started programming in android studio. during ongoing process, discovered android applications not use single entry point (http://en.wikipedia.org/wiki/entry_point) regular applications. according others, android applications not type of apps this. questions are:
how application run without single entry point?
shouldn't programs have single entry point?
android runs processes , each process invoked main method in java , in turn runs native method. processes communications managed binder mechanism. technically speaking, android doesn't have single point entry.
i'm quite new android, correct me if i'm wrong :)
Comments
Post a Comment