Reputation: 2595
I am completely new to linux. Recently installed eclipse with the adt bundle but when i launch it it throws the following exception:
I have tried many things mentioned on different forums like adding sdk paths to the environment variables but it didnt work for me.
Upvotes: 3
Views: 11888
Reputation: 1
I had to do the above, and also for emulator folder. Was able to see a permission error there in idea.log.
$sudo chmod -R 777 emulator
Upvotes: 0
Reputation: 125
The directory of SDK has limited permission. You have to change the permission.
To change the permission:
$sudo chmod -R 777 platform-tools
Upvotes: 3
Reputation: 6960
As part of solution:
1) Check that you can get adb version by typing adb version
in console.
1.1) Check that you are using same adb in eclipse and in console if #1 is working. Type which adb
in console and compare path to adb with path to adb in Eclipse.
2) Open AVD manager
and check that android tools are installed.
3) Check path
4) Check that adb
wasn't installed by other user, or check execution rights.
Solution that helped: install IA32 if you are using 64 bit architecture.
`
Upvotes: 0