Tuesday 23 August 2016

Install android sdk (adb and fastboot) on kali linux.




many users now using debian (ubuntu, kali).
for android development on kali linux you will need to install android sdk.

today i will explain how to install android sdk on kali,

 if you want to install only adb and fastboot(without whole android sdk) then follow this link

Method 1:

1. First download android sdk by following command:

wget http://dl.google.com/android/android-sdk_r24.2-linux.tgz

2. Extract package:

 tar -xvf android-sdk_r24.2-linux.tgz

3. Change Directory:

cd android-sdk-linux/tools


4.  install sdk package:
  ./android update sdk --no-ui

5. set sdk path:


export PATH=${PATH}:/usr/share/android-sdk/tools:/usr/share/android-sdk/platform-tools










Method 2:(Easy and command line)

1.  apt-get install android-sdk

it will take some time to download and install whole android sdk,




2 comments: