I'm not an Android developer but I do other stuff.
I just rooted my phone so I was playing around with a shell and I was trying to compile some C packages and realized there is no C compiler, OK.
Surely there must be Java right? Tried it and I can't get a java
or javac
command to work either.
How is that possible when Android apps are written in Java?
am
command, which calls a script, which sets the am.jar asCLASSPATH
and then executesexec app_process $base/bin com.android.commands.am.Am "$@"
(base
being/system
). Look inside /system/bin/am for details. – Grimoire Nov 03 '16 at 22:20