Skip to content

Instantly share code, notes, and snippets.

@garyservin
Created November 26, 2015 14:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save garyservin/34bea53e53690ccc966d to your computer and use it in GitHub Desktop.
Save garyservin/34bea53e53690ccc966d to your computer and use it in GitHub Desktop.
Re-install Android SDK
docker images # Check if you have the rosndk image on the list
docker run -it rosndk bash # This will create a container based on the image
ls -l # you should have -rw-r--r-- 1 root root 140827643 Jul 2 2014 android-sdk_r23.0.2-linux.tgz
# If you don't have the file follow https://github.com/creativa77/roscpp_android/blob/master/docker/Dockerfile#L23 fron line 23, otherwise, start from line 24
# exit the container
docker commit $(docker ps -aq | head -n 1) rosndk # Commit the latest container to rosndk
./do_docker.sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment