0

All the API calls are working in debugging but when I am creating a build apk file, request not even get called in build apk. The server has an SSL certificate still it get failed

georgeawg
  • 48,608
  • 13
  • 72
  • 95

1 Answers1

1

Add android:usesCleartextTraffic="true" in the application tag of AndroidManifest.xml file

<application android:usesCleartextTraffic="true">
----
----
</application>
Ali Abbas
  • 540
  • 4
  • 10