Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

what is the difference between /system/app and /data/app? [duplicate]

Tags:

android

Possible Duplicate:
Android System App 101

what is the difference between /system/app and /data/app? Is there some different permission in the two directory.

like image 398
Judy Avatar asked Sep 02 '11 01:09

Judy


2 Answers

Yes, the is different in term of permission. System app get more permission compare user app. For example: system app could do gps on/off toggle but not user app.

System app = app installed in /system/app User app = app installed in /data/app

like image 179
Jason Avatar answered Nov 07 '22 02:11

Jason


/data is what is referred to by users as internal memory. This is what runs out etc. You can manually update/market update the apps in here.

/system is also internal memory but a different partition. This is where the rom is.

like image 23
tr4656 Avatar answered Nov 07 '22 03:11

tr4656