im having probleme loading images from the local host into imageView in my android app
i tried using picasso and glid but none of them work .
the images are stored in xampp on my pc , im connecting my phisical device to my pc and using usb tethering to acces the localhost . the probleme is not in the connection between the phone and the device because iam able to insert into the database on the server and olso i can acces the localhost on my divice using the ipv4 address .
piccasso code val picasso = Picasso.get() picasso.load("http://192.168.107.247/phpFiles/mytaxi/img/mimg.jpg") .into(img)
glid code Glide.with(this).load("http://192.168.107.247/phpFiles/mytaxi/img/ming.jpg").into(img)
also this i tryed this link that im using in the code above
and its getting the image correctly as you can see in the image below
so if any one know the solution please help