ubuntu14.04 Android build environment in Debian Jessie
While attempting to build up my 1 year old android beagleboard-x15 image back again to verify functionality, well.. I had left ubuntu behind and had moved on to debian. Unfortunately, I dont seem to have the patience to get debian android build stable... so chroot of ubuntu 14.04 and build of android in that environment.   sudo apt-get install schroot dchroot debootstrap  sudo vim /etc/schroot/schroot.conf   [android]   description=Ubuntu Trusty Android build env   location=/opt/android-build/   priority=3   users=USER #update with your user   groups=GROUP #update with your user group   root-groups=root    sudo mkdir -p /opt/android-build  sudo debootstrap --arch amd64 trusty /opt/android-build  http://archive.ubuntu.com/ubuntu/   sudo vim /opt/android-build/etc/apt/sources.list   ###### Ubuntu Main Repos   deb http://us.archive.ubuntu.com/ubuntu/ trusty main restricted universe multiverse     ###### Ubuntu Update Repos   deb http://us.archive.ubuntu.com/ubuntu/ trusty-securit...
