Showing posts with label adb. Show all posts
Showing posts with label adb. Show all posts
Tuesday, January 2, 2018
How To Setup ADB Fastboot Driver With Android SDK On Windows Complete Guide
How To Setup ADB Fastboot Driver With Android SDK On Windows Complete Guide
Setting up ADB (Android Debug Bridge) and Fastboot is a very basic step to make communication with your android device with Windows. In short, Android Debug Bridge (adb) is a versatile command line tool that lets you communicate with an emulator instance or connected Android-powered device. By having ADB and fastboot, it helps to install and flash zip into your device like custom recovery, insecure bootloader, images, root package, stock or custom firmware, stock or custom ROMs. You must have both ABD & Fastboot to be installed if you starting to develop android app or any other android development jobs.
Let�s get started on how to set up ADB and Fastboot for your android device to Windows.
Let�s get started on how to set up ADB and Fastboot for your android device to Windows.
How To Setup ADB & Fastboot Driver with Android SDK on Windows
Requirements
- Windows PC with internet
- Android device
- MicroUSB cable
Download
- Download android SDK Tools Only for Windows
Android SDK Tools.exe (Official Website, 80MB)
Android SDK provides needed API libraries and developer tools necessary to build, test, and debug apps for Android. If you�re a new Android developer, we recommend you download the ADT Bundle (FULL bundle) to quickly start developing apps. It includes the essential Android SDK components and a version of the Eclipse IDE with built-in ADT (Android Developer Tools) to streamline your Android app development. - Java SE Development Kit 7 (JDK)
jdk-7u11-windows-i586.exe, 32 bit Windows x86, 88.77MB (Only install Windows 32 bit even you are with 64x bit Windows.
Instructions:
- Unzip the downloaded zip file and execute the Android SDK ***.exe file.
- You will be prompted to install Java Platform JDK from Java SE Software if you do not have it in your Windows PC.
- Execute the downloaded Java SE Development kit 7 before proceed.
- Execute again the Android SDK ***.exe to continue.
- Follow the instruction to complete installation of Android SDK Tools. Start SDK Manager.
- Check Android SDK Platform-tools and Google USB Driver.
- Press Install 2 packages to continue installation.
- Select Accept and press Install and let�s the download to complete.
- When you see the log file below, the installation is completed. Press close.
- Now you have ADB and USB drivers installed in PC.
- Now, connect your device to PC with micro usb cable.
- You will see USB driver has installed successfully.
- Activate your android device USB debugging mode. (Settings-> Developer option �> USB debugging.
- Let�s Windows continue to install the driver.
- You are now complete all the ADB and USB driver.
- Reboot your device into fastboot mode and complete fastboot mode driver installation.
Take Note:
To complete installation if you use other than Nexus device, you need additional USB driver from Samsung Kies, HTC Sync, Motorola Sync Manager or LG Mobile Tool.Thursday, December 21, 2017
How to Use adb sideload on your Android device
How to Use adb sideload on your Android device

Probably every Android power-user at least once in his life used ADB - Android Debug Bridge. It is a versatile command line tool that lets you communicate with an emulator instance or connected Android-powered device. Using ADB shell commands gives you additional control over your device and sometimes it can save your device from being bricked (example: How to: copy ROM zip file to the freshly wiped device). You can find some more basic information about ADB here.
Since Android Jelly Bean there has been a new ADB mode available in the AOSP recovery, incorporated by the Android developer community into custom recoveries too. It is called "ADB sideload" and most of you probably have heard about it already. This is an alternate method to the one I wrote about here - How to: copy ROM zip file to the freshly wiped device. The main difference is that ADB sideload works only with recoveries based on Jelly Bean source or newer. I believe that ADB sideload was created to simplify the process of flashing/restoring Android update.zip packages.
Keep in mind that while using ADB sideload, the regular ADB shell wont work. To be able to use SIDELOAD mode make sure youre running latest ADB drivers from the Android SDK (Platform-tools). Here are the simple steps you need to follow to flash update.zip package using adb sideload mode (based on stock Android recovery):
- Place the ZIP package you want to install in the same location where you keep ADB drivers - adb.exe, AdbWinApi.dll and AdbWinUsbApi.dll (usually its SDKplatform-tools)
- Make sure you have USB debugging enabled in Settings > Development on your device
- Make sure your phone drivers are installed on the PC youre going to use
- Boot your device in recovery mode (Android logo with a exclamation mark) and connect your device to PC
- Hold down "power" button first, followed quickly by "volume up" button. You should now see the recovery menu
- Use the volume up/down keys to select "apply update from ADB," then press power to select it
- Open a command prompt on the PC (cmd.exe), type and confirm with ENTER:
- cd /d <adb.exe location> (for example: cd /d c:SDKplatform-tools) or you can open your SDK/platform-tools folder, then press SHIFT button and the right-click mouse button and choose �Open command prompt here�
- adb sideload <filename>.zip (for example: adb sideload update.zip)
- The zip package will begin installing. When its done, select "reboot system now."
How is that different from the alternative method? You dont have to manually create the proper folders structure, push the file and later install if from inside the recovery menu. The result is basically the same, because ADB sideload is also transferring the zip file into the device internal memory and later it automatically begins the installation procedure. However, it works only with recoveries based on Android Jelly Bean source.
Friday, December 8, 2017
How to Install Universal ADB Driver
How to Install Universal ADB Driver
Universal ADB Driver is small and GUI application that allows you to quickly install ADB driver on your computer in few click only. On this page I have to provide instruction to how to Install Universal ADB Driver on Your Computer.�
Subscribe to:
Posts (Atom)