Doing some HTTPS json calls in glass with the GDK, so far so good. Tried to set a card to one of the returned https urls using this code:
Uri uri = Uri.parse(url);
card.addImage(uri);
A strange exception occurred, seemingly implying that glass doesn't support HTTPS?
ERROR/AndroidRuntime(14507): FATAL EXCEPTION: main
java.lang.IllegalArgumentException: unsupported image scheme: https
at com.google.android.glass.app.Card.addImage(Card.java:178)
I've tried the same thing with HTTP images, and receive an "unsupported image scheme: http" error.
How am I supposed to load images with the GDK? Is there some API usage I'm missing?