Item Preview
There Is No Preview Available For This Item
This item does not appear to have any files that can be experienced on Archive.org.
Please download files in this item to interact with them on your computer.
Show all files
1,000
Views
DOWNLOAD OPTIONS
Uploaded by
Amin Masterking
on September 7, 2017
SIMILAR ITEMS (based on metadata)
Обновлено
2019-10-04 08:47:59
Совместимость
Windows XP, Windows Vista, Windows 7, Windows 8, Windows 10
Сайт
developer.android.com
Описание
Android SDK Tools — это бесплатный компонент Android SDK.
О программе Андроид СДК Тулз
Перед вами бесплатный компонент для программы Android SDK, предназначенной для компьютеров на Windows. В его состав вошли все необходимые инструменты, при помощи которых вы сможете создавать новые приложения или игры для популярной мобильной операционной системы от Google, либо отлаживать уже существующие. Кроме того, Android SDK Tools позволяет тестировать созданные приложения, благодаря функции эмуляции ваших проектов.
Последняя версия программы поддерживает работу как на 32-битных, так и на 64-битных системах.
С нашего сайта вы можете скачать Android SDK Tools для Windows совершенно бесплатно.
Версии
Содержание:
- 1 Что позволяет делать ADB?
- 2 Установка ADB и Fastboot из пакета Android SDK
- 3 Minimal ADB and Fastboot
- 4 Проверка работы ADB и Fastboot
ADB, или Android Debug Bridge – это консольное приложение для ПК, с помощью которого можно управлять устройством на базе Android прямо с компьютера. Выглядит это так: сначала на компьютер устанавливаются инструментарий ADB и драйвера для Android, потом мобильное устройство подключается к ПК через USB-кабель в режиме отладки, и, наконец, после запуска ADB в консоли (командной строке) выполняются специальные команды, инициирующие те или действия с гаджетом. Подробная информация о принципе работы самого средства отладки представлена на официальном сайте разработчика, поэтому мы останавливаться на этом не будем, а сразу перейдем к возможностям ADB и способам его установки на компьютер.
Для начала укажем зачем вообще нужен ADB. С его помощью можно:
- Перезагружать устройство в различных режимах;
- Обмениваться файлами/папками с телефоном;
- Устанавливать/удалять приложения;
- Устанавливать кастомные прошивки (в том числе, TWRP Recovery);
- Производить разблокировку графического ключа Андроид;
- Выполнять разного рода скрипты.
Инструмент ADB обычно устанавливается в связке с консольным приложением Fastboot.
Установка ADB и Fastboot из пакета Android SDK
Этот способ предусматривает использование официального средства разработки и тестирования приложений Android Studio. Переходим на страницу https://developer.android.com/studio/index.html и находим заголовок «Get just the command line tools». Ниже скачиваем архив SDK tools для Windows (перед загрузкой соглашаемся с условиями использования).
Распаковываем архив на диск С. В нашем случае файлы были извлечены в папку sdk-tools-windows-3859397.
Заходим в директорию, а потом переходим в каталог tools/bin. Здесь нас интересует файл sdkmanager, который и поможет установить ADB и Fastboot на компьютер.
Далее все действия будут производиться в командной строке Windows. Запускаем ее от имени администратора.
Теперь необходимо открыть папку с sdkmanager, для чего в консоли следует выполнить команду cd C:sdk-tools-windows-3859397toolsbin, где C:sdk-tools-windows-3859397toolsbin – путь к файлу sdkmanager.
Если вы распаковали Android SDK не на диск С, а в какое-то иное место, то полный адрес можно будет узнать с помощью верхней строки Проводника (кликаем по конечной папке правой кнопкой мыши и жмем «Копировать адрес»).
Итак, мы перешли в toolsbin и теперь нам нужно выполнить команду sdkmanager «platform-tools», которая установит пакет Platform-tools, содержащий файлы ADB и Fastboot.
В ходе установки ознакомьтесь с лицензионным соглашением и нажмите Y для завершения операции.
Если все прошло как надо, в корневой папке Android SDK появится каталог platform-tools с необходимыми файлами adb.exe и fastboot.exe.
Minimal ADB and Fastboot
Второй способ еще более простой. На форуме разработчиков Xda Developers можно скачать пакет Minimal ADB and Fastboot со всеми необходимыми файлами. Для этого заходим на страницу https://forum.xda-developers.com/showthread.php?t=2317790 и, кликнув по ссылке, загружаем установочный exe-файл.
Запускаем его и следуем инструкциям.
Мы установили Minimal ADB and Fastboot в корень того же диска С.
В принципе, на этом все. Осталось проверить наличие файлов.
Проверка работы ADB и Fastboot
После установки приложений любым из приведенных способов необходимо удостовериться в корректности работы утилит. Для этого через командную строку заходим в папку с файлами adb и fastboot (команда cd C:sdk-tools-windows-3859397platform-tools или cd C:Minimal ADB and Fastboot), а затем выполняем команду adb help. Она должна вывести версию установленного Android Debug Bridge и список команд ADB. Если вы видите примерно то же, что изображено на приведенном ниже скриншоте, значит все работает правильно.
Теперь следует подключить к ПК мобильное устройство и проверить, увидит ли его приложение ADB. Подсоединяем телефон (или планшет) к компьютеру с помощью USB-кабеля, выставляем в настройках режим подключения MTP (обмен файлами) и заходим в раздел Настройки – Для разработчиков.
Если такого пункта в настройках нет, то переходим на страницу «О телефоне» и семь раз кликаем по строке с номером сборки.
Режим разработчика будет активирован, и раздел «Для разработчиков» станет доступным. Заходим в него и включаем опцию «Отладка по USB».
После всех этих манипуляций с гаджетом в командной строке Windows вводим команду adb devices. Она выведет информацию о подключенном устройстве примерно в таком формате, как на скриншоте.
Далее попробуем проверить, работает ли fastboot. Здесь же в консоли прописываем fastboot reboot и жмем Enter. Мобильное устройство должно перезагрузиться в обычном режиме.
Таким образом, мы протестировали ADB и Fastboot и убедились, что Android Debug Bridge нормально функционирует, а, значит, теперь можно управлять телефоном через компьютер.
Если связь с устройством наладить не получается, то необходимо проверить наличие и корректность установки драйверов Андроид. Для этого при включенном режиме отладки заходим в «Диспетчер устройств» и смотрим, нет ли восклицательных знаков в ветке «Устройства USB» пункт «ADB Interface» (может называться немного по-другому).
При обнаружении неполадок пробуем переустановить драйвера. Скачать их можно на сайте производителя телефона или по адресу https://adb.clockworkmod.com/.
Надеемся, что статья была для вас полезна.
1.6 M
Среда для программирования под Android
Спустя некоторое время после первого выпуска, а затем огромного роста популярности операционной системы Android для мобильных устройств, был выпущен инструментарий для разработчиков.
Android SDK включает…
Больше информации
Лицензия | Бесплатно | |
---|---|---|
ОС | Windows |
Раздел | Общие | |
---|---|---|
Язык | Pусский | |
Автор | Google, Inc | |
Размер | 148.9 MB | |
Загрузки | 1,588,557 | |
Дата | 9 окт 2019 | |
SHA256 | 7e81d69c303e47a4f0e748a6352d85cd0c8fd90a5a95ae4e076b5e5f960d3c7a | |
Почему это приложение опубликовано на Uptodown? |
(Больше информации) |
Приложения, рекомендуемые для вас
Надежный, универсальный и настраиваемый браузер
Новая среда программирования для Android
Самый простой эмулятор Android для Windows
Общайтесь со всеми своими контактами в Telegram со своего рабочего стола
Видеозвонки и конференции с массой других возможностей
Автоматизация нажатий мышкой на компьютере
Общайся с друзьями через десктопную версию Whatsapp
Совершенный партнер для вашего нового iPod или iPhone
Похожие на Android SDK
Объектно-ориентированный динамический язык программирования
Полнофункциональный текстовый редактор для программистов от GitHub
Многоплатформенный редактор кода для Microsoft
Динамическая среда для веб-разработки
Новая среда программирования для Android
Среда IDE, адаптированная для программирования на динамических языках
Avocode
Компилятор с открытым исходным кодом для Pascal
Новая среда программирования для Android
Emurasoft
Все, что нужно программисту от редактора
VLSoftware.net
Создавайте собственные игры для любых платформ
Инструмент для создания нелинейных интерактивных рассказов
Самая популярная среда разработки
Создавай приложения на HTML5 максимально просто
Nobody can call oneself an avid Android user without being familiar with ADB and Fastboot. They are very useful command-line tools that can be used to perform countless developer-level tasks on Android devices. You can use ADB and Fastboot commands on Windows, macOS, or Linux to control and customize your Android phone or tablet. Before you can do that, however, you must download and install the ADB drivers on your computer. The SDK Platform tools pack together all required files to execute ADB and Fastboot commands. Below, you can download the latest SDK platform tools Zip for Windows, Linux, and macOS X directly from the Google servers.
Using ADB and Fastboot commands, you can install, uninstall, debug and emulate apps, customize your Android device, enable and disable hidden settings, back up your data, push and full files, and remotely control your device from your computer. Moreover, you can also flash factory images, custom recovery, sideload APK, and so on. If you want to learn about the possibilities you can explore after installing the Android SDK platform tools, please refer check out the following lists of commands.
- ADB commands list
- ADB Shell commands list
- Fastboot commands cheat sheet
What is SDK Platform Tools?
SDK is an abbreviation for Software Development Kit. The SDK platform tools contain the ADB and Fastboot drivers for Android. These drivers are very essential because they let a computer establish a connection with an Android phone, tablet, or smartwatch connected over a USB cable or WiFi. Originally, the Android SDK platform tools were a part of the Android SDK Manager and Android Studio. Later, Google decided to release the Platform-tools separately in a compact easy-to-download Zip package for operating systems like Windows, Linux, and Mac.
Download ADB and Fastboot SDK Platform-Tools
Below you can download the Android SDK Tools for all three major operating systems for computers.
Android SDK Tools (Windows)
Having downloaded the latest version of Android SDK platform tools for Windows, you can follow the steps given below to set it up.
platform-tools-latest-windows.zip
Android SDK Platform Tools (Mac OS X)
platform-tools-latest-darwin.zip
(Learn, how to install and use ADB and Fastboot on Mac)
ADB Platform Tools (Linux & Ubuntu)
platform-tools-latest-linux.zip
I wrote a detailed guide on installing ADB and Fastboot on Linux to help you with using ADB commands easily.
Don’t Miss: How to Install Use ADB Commands on Android Phones
How to Set up SDK Platform-Tools
Now that you have already downloaded the SDK platform tools, you need to install or set them up on your computer. If you don’t know what to do with the zip file you just downloaded and how to execute the ADB and Fastboot commands, I am going to explain everything you need to know.
First of all, you need to unzip the “platform-tools-latest.zip“. You can extract it anywhere on your computer but I prefer saving the files to a folder created as “Android” on the C drive on my Windows PC. Having extracted the zip file, you need to launch a command prompt window before you can execute an ADB or Fastboot command.
Launching a Command Window with ADB/Fastboot Path
It’s very easy to launch a command prompt window on a Windows PC. Click the Search icon next to the Windows menu icon on the taskbar and hit the Enter key. In case you need to launch the Command or CMD window from inside the Platform-tools folder, there are 2 ways to do that.
Method 1
- Open the folder in which you extracted the content of the Platform-tool.zip file.
- While pressing the Shift key on the keyboard, perform a right-click on your mouse at an empty place inside the folder window.
- In the context menu, select the “Open command prompt here” or “Open in Terminal” option.
- You can now execute any ADB or Fastboot command.
Method 2
Well, this method is far easier than the one I described above. You can simply launch a command window from inside the platform-tools folder by typing “cmd” or “powershell” in the Windows file explorer address bar as shown below and hitting the Enter key on your PC’s keyboard.
Note: Make sure to enable the USB debugging option on your Android device. You can find it under Settings> Developer options. In case you don’t see Developer Options listed under device Settings, open About device> Software Information and tap the Build number 7 times to unlock the hidden Developer options on your Android device.
You need to allow the debugging option so that your devices and computer can communicate and interact with each other. When you execute a command in the command window, you’ll get a pop-up on your Android phone’s screen asking you to Allow USB debugging.
Verify ADB Connection
Note: Make sure you have already installed the proper Android USB Driver from your device’s manufacturer on your computer.
- Having enabled USB Debugging from Developer options, connect your phone or tablet to the computer using a compatible USB cable.
- Now launch a command window and type the following command and click the Enter key on the keyboard.
adb devices
- You’ll see the list of the IDs of attached devices in the Command Prompt window represented by a string of alphanumeric values as shown below.
Please note that to sideload an APK on your Android phone via ADB or to flash a system image (.img) file using Fastboot commands, you need to place those files inside the “platform-tools” folder first. You can also enable system-wide ADB and fastboot so that you can execute commands without navigating to the “platform-tools” directory every time. If you encounter any problem while running commands, read my tutorial on fixing ADB or Fastboot is not recognized error.
That’s all for now! I’ve also prepared a very exhaustive list of useful ADB, ADB Shell, and Fastboot commands in a dedicated tutorial. Don’t forget to check that.
Now that you have set up SDK Platform tools on your computer, here are a few things that you should start with.
- Uninstall system apps on Android without root
- Turn Safe Mode On or Off using ADB command
- Turn off USB Debugging and Developer options using ADB command