0

I have an Android phone with com.google.android.dialer application to dial a number ( I get the name by executing ps command after adb shell). But I don't succeed to know where is the application.

ls, ps, cat and so can be found in /system/bin but where is com.google.android.dialer ? I didn't find it in /data/app.

user3680197
  • 1
  • 1
  • 1

3 Answers3

1

System app's apk's are in /system/app.

System app's data is in /system/data.

User app's apk's are in /data/app.

User app's data is in /data/data.

x13
  • 2,179
  • 1
  • 11
  • 27
  • I looked in these directories and some others (http://android.stackexchange.com/questions/3002/where-in-the-file-system-are-applications-installed) but nothing. Maybe I don't understand something. I have subdirectory in /system/app and maybe com.google.android.dialer is in apk but how `am start com.google.android.dialer` know what is the good path? – user3680197 Oct 04 '15 at 19:40
  • I can't look in your system, you should find it yourself. Sorry. – x13 Oct 04 '15 at 19:41
0

I guess what you need is to dial a number, for that you can use:

am start -a android.intent.action.CALL -d tel:111-1111-1111
Pedro Lobito
  • 94,083
  • 31
  • 258
  • 268
0

com.google.android.dialer is in /system/priv-app/Dialer

I guess am is looking in all directories containing applications (/system/priv-app,/system/app ...) but I'm sure about that.

user3680197
  • 1
  • 1
  • 1