The Dockerfile attempts to download Android SDK API 22 but fails with message:
Skipping 'Google APIs, Android API 22, revision 1'; it depends on 'SDK Platform Android 5.1.1, API 22, revision 2' which was not installed.
The offending line is here:
https://github.com/ekumenlabs/roscpp_android/blob/master/docker/Dockerfile#L27
This fix is to add 4 to the list, so the line reads:
RUN (while true; do echo 'y'; sleep 2; done) | android update sdk -u -t 2,3,4,6,7,8,9,11,13,16,56,57
The Dockerfile attempts to download Android SDK API 22 but fails with message:
The offending line is here:
https://github.com/ekumenlabs/roscpp_android/blob/master/docker/Dockerfile#L27
This fix is to add 4 to the list, so the line reads:
RUN (while true; do echo 'y'; sleep 2; done) | android update sdk -u -t 2,3,4,6,7,8,9,11,13,16,56,57