I'm having trouble loading any image over https. I'm using React Native 0.18, and the implementation is extremely straightforward, example using image at Amazon:
Will work:
<Image style={styles.avatar} source={{uri: "http://ecx.images-amazon.com/images/I/71JxCVQ5ozL.jpg"}} />
Won't work:
<Image style={styles.avatar} source={{uri: "https://images-na.ssl-images-amazon.com/images/I/41KoE8etwlL.jpg"}} />
Has anyone else seen this?
Thanks for your help.