Do you mean using flashfire and SuperSU? I don't know, for me it looks like an additional unecessary step:
First of all, we want to avoid persistent root as it can be detectable by apps.
I didn't notice any behaivior of DJI Go 4.3.16 and Pilot 1.7.0 on a rooted device,
but I didn't give it a very deep look. Didn't even decompile the bytecode of the stock apps, just made sure they work as before.
There are other DJI daemons that run as root and can detect (persistently) rooted device with 99% probability if they wish to do so.
These methods involve looking up several system properties that can only been changed when the device is rooted. If the values don’t match an unrooted device it’ll flag it as rooted. (Super)su and Busybox binaries are often present on rooted devices, so a simple file system check can detect it as well.
Some root handlers mount the /system partition as read-write, another way etc.
Losing warranty, bricking, is only one reason why we want to avoid it.So SuperSU and other things you would probably don't care about on
an emulator - are extremely important here.
The guide should be focused about gaining a
temp root, install the stuff (Gapps, apks, firewall rules that you need, reboot and go to a clean state.
By clean I mean system-wise unrooted, with your stuff installed and working.
This part is totally missing from your guide for now.
People who want persistent root can go all the way further and install the
unstable garbage like SuperSU, but it shouldn't be a default for all.
Also we want to make sure it's future proof for any next updates, as it will
be less trivial for DJI and other apps to check for device modifications,
we can safely sideload/update any userspace app without worries.
Back to the original question, no - that method will not work since the original installd will check for the following manifests:
> dji.pilot.pad, com.DeviceTest, com.google.android.apps.maps
In the patched installd, this check is zeroed out with 'a's:
< aaa.aaaaa.aaa, aaa.aaaaaaaaaa, aaaaaaaaaa.aaaaaaa.aaaa.aaaa
Here are both files -
Original: https://mega.nz/#!3MwB1bDR!QlsCdfe_0MDBRlt5InA32QZllPssUKG1MCYC0WgECjo
Patched:
https://mega.nz/#!mY41wRCJ!_U8wDHMUJloyQF6gniKn63ozAl1lxzHkEP0G4HaZQr8
To patch, just replace /system/bin/installd with the patched one.