Skip to content

Instantly share code, notes, and snippets.

@greg-kennedy
Last active January 2, 2018 18:35
Show Gist options
  • Save greg-kennedy/e27024c9b0e0637b0efe0d2ccbbe7740 to your computer and use it in GitHub Desktop.
Save greg-kennedy/e27024c9b0e0637b0efe0d2ccbbe7740 to your computer and use it in GitHub Desktop.
Enable Android on Chromebooks

Modern Chromebooks support Android out-of-the-box. Older models may support it, but not "officially", and need a workaround to get Android going.

--enable-arc
--arc-availability=officially-supported
  • Now create a file /usr/local/bin/android.sh as:
#!/bin/sh

mount -o bind /usr/local/etc/chrome_dev.conf /etc/chrome_dev.conf
sleep 1
restart ui
  • Now, just execute that file as root after every reboot. For example, after a cold boot, open a shell and: sudo sh android.sh

The UI will restart, and the Play Store (and other Android apps) should be available until you poweroff.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment