Problem
You have a problem with aapt and adb after installing the android-sdk tools in an Ubuntu 64 installation.
Solution
Make sure you install the 32-bit libraries with:
1 |
sudo apt-get install ia32-libs |
Problem
You are trying to use the Android Debug Bridge (adb), but running it from the command line trying to list the connected devices you get the error:
1 |
insufficient permissions for device |
Solution
You would need to start the adb server with su permissions, so you can try the following:
1 2 3 4 |
adb kill-server sudo adb start-server adb devices adb logcat |