Possible Duplicate:
Where in the file system are applications installed?
How can I view the .apk files of currenly installed apps on my android phone?
Possible Duplicate:
Where in the file system are applications installed?
How can I view the .apk files of currenly installed apps on my android phone?
Use a file manager to look in the following locations:
/data/app
/data/app-private
/system/app/
/sdcard/.android_secure
(shows .asec files, not .apks)/sdcard/external_sd/.android_secure
You need to be rooted to view the first three.
Use command pm list package -f
(via adb shell
if you want to use ADB) to list packages with their respective locations. You can then read the files. This can be done without superuser permissions.
System apps are found in /system/app/
.
The other apps you've installed are found in the /mnt/asec/
directory. See my answer to this question for details.
/system/app/
now. – Firelord Dec 05 '15 at 05:32