Pages

Sunday, June 30, 2013

Using .bashrc function to connect and debug your android application.

This is a simple way to use your tablet device to debug your android applications.

Go to root account and open the .bashrc file.

Type the next source code using your home folder account.

function tablet()
{
cd /home/free-tutorials/android-studio/sdk/platform-tools/
./adb kill-server
./adb server
./adb devices
}

Restart your terminal, connect your tablet device .

Now you can use this command : tablet to start connection with your tablet.

If you want to see more about programming android application under Fedora distro , just go to this website.