Android Studio - ADB or Virtual Device without admin rights

14,248

HAXM is a system driver that allows you to improve execution speed of Android emulators running an x86 image. For installation admin permission are required this is a fact. No admin permissions means no HAXM and therefore no speed improvements. However the Android emulator works for x86 and ARM virtual devices.

For working with ADB and a real device you need to enable USB debugging on your device and install the Android ADB driver for USB on your computer. The ADB device appears then in the Windows device manager. Usually installing an driver requires admin permissions.

Conclusion: If you really want to do Android development as an admin to perform the necessary changes if you don't have the required permissions.

Share:
14,248
Fred
Author by

Fred

Updated on June 14, 2022

Comments

  • Fred
    Fred almost 2 years

    Due to my business trips, I would use my professional laptop for improving my skills in Android development. I don't have administrator rights, so I installed Android Studio. Sadly, I have 2 kinds of errors :

    • Please ensure Intel HAXM is properly installed and usable. Intel HAXM is available at ...\Sdk\extras\intel\Hardware_Accelerated_Execution_Manager but I'm not allowed to launch intelhaxm-android.exe due to non-admin rights.
    • My Android device is not recognized by Android Studio but well recognized by my laptop. It seems ADB.exe couldn't be installed without admin rights.

    How can I fix these issues, at least one of them ?

    Thanks in advance for your help !

    Fred