As found by Nilian, http://stackoverflow.com/questions/38153335/react-native-loading-image-over-https-works-while-http-does-not-work . Server side should verify thant imageUrl is https, otherwise on RN side, a rewrite rule can be implemented in Post.js ```` render () { return ( <View style={{flex: 1, width: 150, height: 150}}> <Image source={{ uri: this.props.post.imageUrl.replace(/^http:\/\//i, 'https://') }} style={{flex: 1, width: 150, height: 150}} /> <Text>{this.props.post.description}</Text> </View> ) } ````
As found by Nilian, http://stackoverflow.com/questions/38153335/react-native-loading-image-over-https-works-while-http-does-not-work .
Server side should verify thant imageUrl is https, otherwise on RN side, a rewrite rule can be implemented in Post.js