Root access (typically) requires several components that work in concert with one another. A somewhat simplified view of what you need is:
- A native
su binary. This can be invoked from the command line or from applications. It is what actually performs the act of switching users, and grants a process root permission.
- A "gatekeeper" application, that regulates which other apps and processes are allowed to invoke
su to gain root privileges.
Think of the SuperSU application as being a sort of graphical front-end for the su binary.
Because of the way directory/file permissions are configured on Android, you need to have the su binary on your /system partition in order for it to work. Putting elsewhere will not suffice, because it will not have the permissions it needs to actually allow processes to switch users.
Normal applications (without root) cannot write to /system, so the SuperSU application itself cannot simply install su where it needs to be. This is the reason why you will not have root if you install SuperSU from the Play Store without taking any other steps. All you have is the front-end, but not the underlying pieces that are necessary. You only have half of what you need for root, and no way to get the other half from the SuperSU application alone.
Therefore, the most common way to get the su file in the proper place is to install it from recovery, since the recovery system has full access to the device storage and can install files anywhere it wants. Once that is done, SuperSU and su can talk to each other and provide root access to other processes.
The recovery installation file also installs SuperSU because it is convenient, and putting it in /system prevents it from being erased by a factory reset. However, if you wanted to, you could install only su from recovery and then get SuperSU from the Play Store. It would function just fine. Similarly, you can update SuperSU from the Play Store later on and it will continue to function (because su is already in place at that point).
subinary was built. Towelroot uses one that requires no additional app (it approves everything), but I'm not sure if SuperSU works that way in the absence of the app. – eldarerathis Jan 26 '15 at 15:32subinary on your/systempartition in order for it to work." Would you please provide a link that explains about this special configuration of the/systempartition? What can binaries that are on/systemdo which is not allowed for binaries that are on/data? – Oren Milman Feb 10 '19 at 07:38