On Mon, Jun 16, 2014 at 6:15 PM, ANKUR GOEL <[email protected]> wrote:
> Hi all , > > i wanna some tutorials and videos where i can see how the android internal > works , > which part of OS reads the manifest , how the intent service works > internally etc > > Thanks > For basic Android internals: https://developer.android.com/guide/components/services.html But specifically for handling Manifest files, then it is EVERYWHERE. eg, Just go to the Android source code and subdirectory: frameworks/base/services/java/com/android/server grep for Manifest and you can see every files (each of which implement different Java services in Android) has use of Manifest files. It is the core basic security mechanism in Android. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en --- You received this message because you are subscribed to the Google Groups "Android Developers" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.

