Debug Android App On Mac Terminal

To setup Android Debug Bridge on you Mac, you have to know the ADB properly. There are some reasons to setup the ADB on your Mac.

Open the directory android that you made it in the first step. Click on the /sdk/platform-tools and copy the adb file. In the root of the original android directory, paste the adb. Almost you are done. You need to check the process. After the setting you have to connect your android device with your Mac. Android Debug Bridge (adb) is a versatile command-line tool that lets you communicate with a device. The adb command facilitates a variety of device actions, such as installing and debugging apps, and it provides access to a Unix shell that you can use to run a variety of commands on a device. To stop the Android Emulator, just close the emulator window. Installing an app. In addition to installing an app through Android Studio or the emulator UI, you can install your app on a virtual device by using the adb utility. To install an app by using adb, and then run and test the app, follow these general steps. Feb 04, 2020  Open Command Prompt or Terminal. If the result of the command is text similar to this: Android Debug Bridge version 1.0.39 Revision 3db08f2c6889-android Installed as C:ADBplatform-toolsadb.exe then you're ready to start using Android Debug Bridge from the.

What is ADB?

ADB defines Android Debug Bridge. It is a versatile tool that helps you to manage the state of Android powered device. It is two different applications. One application for your pone and another is for your Mac or Linux. After connecting your phone with the Mac, you can command and communicate with the phone by using your Mac. It will appear on your screen and keyboard.

During the command and communication things can be run directly when it use some terminal emulator. It seems difficult to execute the complex commands. It's a bridge between your Mac and your machine.

The ADB is used for Android development. It has three components: A server, a daemon and a client. Mostly it is used on actual Android device to manage either emulator. ADB is the Android development machine that is the basic requirement of the development. The client component of the ADB runs through the development machine. Also The ADB daemon runs as background process in the device itself.

Why do you want to setup ADB?

ADB is wonder tool for the Android users. It is Terminal based interface to interact with the Android phone system. We setup the ADB for following reasons.

  • The first and foremost criteria to setup the ADB is to facilitate interaction between both AVB emulators, develop system and physical Android device. It is for the purpose of debugging and running applications.
  • By the ADB command line tools various tasks may be performed. ADB components are used for the Android development through your Mac.
  • It consists of a daemon background process running AVDs, server process running in the background and physical Android device such as tablets and phones.

How to setup Android ADB on Mac.

Let's have a look to see the procedure of installing the full process of setting ADB on Mac. Follow the instructions with screen shoots.

Step 1: Installing the Android SDK

Before starting the download, create a new directory that you can easily find on your make. Always check the available latest versions before installing the Android SDK. For your Mac you will get the SDK package as zip format. Download the zip package and extracted the package. You will see the folder like android-sdk-macosx. Enter and navigate the folder: sdk-macosx/tools/.

To execute the SDK manager, jus double click on the on the 'android'. Stay everything un-ticked.

Debug Android App On Phone

Step 2: Downloading the SDK Platform Tools

Debug app download

Now you have to download and install the SDK Platform Tools. Firstly select the SDK Platform-tools and install it. Then next window will appear, accept the license regulation and Install the tools. After completing the installation, close the window. This way SDK manager downloads the SDK Platform tools successfully. It is necessary for ADB. Define the path where ADB is located.

Open the directory android that you made it in the first step. Click on the /sdk/platform-tools and copy the adb file. In the root of the original android directory, paste the adb. Almost you are done. You need to check the process.

Mac os x lion software. Oct 19, 2016  Mac OS X Lion 10.7 Free Download, Overview, features and enhancements of Mac OS X Lion 10.7, System Requirements for Mac OS X Lion. If you need to purchase Mac OS X 10.7 Lion, you may order it from this page. The most current version of OS X is OS X 10.9 Mavericks. To learn more, please click here. What do you receive: An email with a content code for the Mac App Store. Note: Content codes are usually delivered within 1 business day but may occasionally take longer. The use of content codes and redeemed software is subject. Oct 10, 2017  The MAC Operating System X Lion v10.7.5 update is the new updated release that now includes bug fixes and improves the compatibility, stability and enhanced security features for the Mac operating system. Lion users now feel more compatible and secure within the new OS x 10.7.5 update. Now you will have a number of fixes and improvements in this updated version. Sep 07, 2018  Mac OS X Mountain Lion Overview. OS X is an operating system designed and marketed by Apple Inc. For its Mac series of computers. The OS X Mountain Lion is the ninth version of the operating system, replacing its predecessor; the Mac OS X Lion. The change in the name signifies an update, which is now a regular feature of Apple’s software policy.

After the setting you have to connect your android device with your Mac. Before that you have to enable the Android Debugging on your device. Through the Developer options it will be done . It is hidden setting. When you press Build number 7 times during Settings > About Phone on your device, it will be activated.

  • Open the Terminal and type cd in the path of original android directory that you made in the first step.
  • cd ~/Desktop/android
  • click Return
  • Again Type ./adb devices & press Return
  • Check your Android device, there might ask you to Allow USB Debugging from your Mac. If there any messages like that, just allow.
  • You will see that your device is enlisted as an attached device.
  • You may need to type. /adb devices again. Then you will see that you device is an authorized device.

There will appear a message in Terminal saying
* daemon not running starting it now on port 5037 *
* daemon started successfully *.

Don't worry; just continue the following process in the setup.

If you did the following steps then it everything went as expected. ADB is installed and function also ready to start. Using the Terminal you can add a path and you don't need to add./ and cd in the android directory to every command.

  • Open terminal
  • Write nano ~/.bash_profile
  • Click Return.

There should be a terminal window that is like the one above. Into the terminal window, copy the export PATH command just below your Terminal window exchanging /Users/ /Desktop/android with the right path to the original android directory that you have created in the first step.

export PATH=${PATH}:/Users/ /Desktop/android

Debug Android App On Device

Debug Android App On Mac Terminal

Debug App Download

  • Click on Return
  • Click on CTRL+X
  • Click on Y to confirm
  • Click on Return
  • Close Terminal

Now you have to confirm about the installation. Type adb devices into the Terminal and you will see you device enlisted under attached devices without having to change directories. Before trying to the last step of adb devices, don't forget to add close terminal. It may create problem to setup. Now you have completed the total procedure of the ADB setup. If you face problem, just try again it on you Mac OS.

How to Use ADB

Setting should be done though above the procedure. Whatever you like to your phone you can simply use ADB to manipulate your phone. Check the command of your ADB on your Android device. Press 'adb device' and hit enter. You may see the serial number on the screen. If you failed to installed the ADB or failed to use the ADB. Just go through the instructions again. It is the right way to setup the Android Debug Bridge on your Mac.