I am getting a weird issue while testing on multiple devices. I am currently working on a application which uses internet connection for Api calls.
Application tested on 15 different devices & in 12 devices it works perfectly fine.
Only 3 devices its not working are the One plus devices. I tried to investigate the issue & found that it has some issues regarding internet connection. So basically its not allowing to access internet connection.
Efforts :
- I have already tried to use lots of different solutions but didn't get any proper solution.
- All permissions settings done perfectly
- Only it sticks on the One plus devices as per the 15 device testing scenario
- On that all One plus devices other apps works normally without any issues
Devices I tested on :
- One plus
- Moto G
- Samsung s9
- MI Note 4, 5
- Gionee
- Oppo
Can anyone kindly provide some guidance for resolving this issue.
Edit :
By getting more help from the @ninja I found that it was not actually an device specific issue. But it was an issue with OS 9.0 or above.
So by adding the below Line in manifest file did trick.
<application
....
android:usesCleartextTraffic="true"
...
Thanks in advance.