try {
String urlImage="https://maps.googleapis.com/maps/api/staticmap?center=0,0&zoom=1&size=100x100&key=AIzaSyD_GK1iiZD2kV5J_v6";
System.out.println(urlImage);
bitmap1 = BitmapFactory.decodeStream((InputStream) new URL(urlImage).getContent());
} catch (Exception e) {
e.printStackTrace();
}
when i call this url i get
javax.net.ssl.sslhandshakeexception:Handshake failed
exception how can i solve it