--
You received this message because you are subscribed to the Google Groups "Genymotion Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to genymotion-use...@googlegroups.com.
To post to this group, send email to genymoti...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
For more options, visit https://groups.google.com/d/optout.
Quinny899 says:I got root like this:
Download SuperSU from the Play Store
Download the attached zip and extract the su binary out of it (I got it from SuperSU)
Open a terminal on your PC and run the following:adb devices
adb root
adb connect <the IP that adb devices showed>
adb remount
adb push su /system/xbin/
adb push su /system/bin
adb shell chmod 6755 /system/bin/su
adb shell chmod 6755 /system/xbin/su
Now root will work with SuperSU
adb push path/to/su /system/xbin/
adb push path/to/su /system/binDoes this help?