Fix Android device does not eject debug authorization reminder
1, install the Android SDK, set the system environment variable%andriod_sdk_home%, after set up check:
C:\users\leizm>echo%andriod_sdk_home%
G:\adt-bundle-windows-x86-20131030\sdk\platform-tools
2. Install mobile phone Driver
3, the installation of ADB, a lot of tools are automatically installed, can be viewed through the command:
C:\users\leizm>where ADB
C:\Android\adb.exe
4. View Device
C:\USERS\LEIZM>ADB devices
List of devices attached
84A82BCC Unauthorized
Unauthorized indicates that debugging is not authorized.
5. Input command processing
C:\USERS\LEIZM>ADB Kill-server
C:\USERS\LEIZM>ADB Start-server
* Daemon not running. Starting it now on Port 5037 *
* Daemon started successfully *
C:\USERS\LEIZM>ADB devices
List of devices attached
84A82BCC Device
This article is from the lava blog, so be sure to keep this source http://lavasoft.blog.51cto.com/62575/1945896
Fix Android device does not eject debug authorization reminder