8 Internal Concepts of Android Operating System
- · Android System uses Ext4 file system of Linux. Earlier versions uses YAFFS (Yet Another Flash File System) file System. The device vendors replace the file system.
- · Each Application runs in its own process space and use a separate Dalvik VM.
- · Each process can share its data by defining Content Provider.
- · The applications signed with same signature can be shared using the same android:sharedUserId
- · To protect the applications “Copy Protection” option allows the applications to install in data/app-private folder. This is not accessible directly to end user. The further protection can be implement using license services.
- · Android OS has no swap space
- · JNI interface which is a call gate for the C/C++ for JAVA is used to interface the native system
- · .class is processed by dx utility to generate the .dex file
No comments:
Post a Comment