i am very new to android. I have a doubt regarding the OS operation in android.
In Symbian OS when an application gets crashed the device will gets switched off and will gets switched on by its own.
Where as in android when an application gets crashed it does not disturbs the other one, how does this happening, can anyone explain about this and suggest me a tutorial to learn the basics of android…..
From the Application Fundamentals
To sum up:
Each app is it’s own user with it’s own ID and privileges and is running in it’s own VM isolated from other apps.
So if an app crashes, other apps need not know or care about this event since they are running in completely different virtualized context of their own and the crashed app doesn’t affect them (Unless they are sharing some resources like files which are handled by a combination of developer skill and system level exception handling).
This is how app separation is maintained in Android.