Android Studio doesn’t see device

To change what your application defaults to when you click run or debug in Android Studio, follow these steps: 1. go to Run 2. Click on Edit Configurations 3. Select the project 4. find the Target Device section under the General tab on the Android Application page. That seems to be where you toggle what the project builds to. If you’re importing a project it actually … Read more

Android Studio AVD – Emulator: Process finished with exit code 1

These are known errors from libGL and libstdc++ You can quick fix this by change to use Software for Emulated Performance Graphics option, in the AVD settings. Or try to use the libstdc++.so.6 (which is available in your system) instead of the one bundled inside Android SDK. There are 2 ways to replace it: The emulator has a switch -use-system-libs. You can found it here: ~/Android/Sdk/tools/emulator … Read more