Skip to content

Instantly share code, notes, and snippets.

@rinav
Last active May 25, 2017 10:35
Show Gist options
  • Save rinav/06e187e35dc53b6bb1d468d886294b10 to your computer and use it in GitHub Desktop.
Save rinav/06e187e35dc53b6bb1d468d886294b10 to your computer and use it in GitHub Desktop.
Create a launcher to launch the specified AVD to deal with the famous lib64stdc++6 conflict with the system libs on linux systems
# create a launcher on your prefered Desktop Environment, mine is XFCE and add the below line to 'command' section.
# next, Select an icon for the launcher and thats it.
``` fish
/run/media/rinav/sdk/android-sdk/tools/emulator -avd Nexus_6P_API_25 -use-system-libs
```
OR
you can also add the following environment to your shell. I am using fish shell, so below is the syntax for the same
set -gx ANDROID_EMULATOR_USE_SYSTEM_LIBS 1
-g argument makes it global
-x makes it export
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment