Hello!
Currently, I'm encountering the following error in the Android physical device testing environment, and live updates are not functioning.
12-08 18:17:10.901 9999 10859 I yoyo : Exception = java.io.IOException: Cleartext HTTP traffic to 192.168.2.215 not permitted
12-08 18:17:10.901 9999 10859 I yoyo : HttpResultString( "IOException", 404, 33 )
Things I've tried:
- Live updates function when building http://192.168.2.215:5100 on a Windows VM.
- Internet permission is granted in Android game options.
- Activated the private checkboxes for GameMaker and gm_live_server in the firewall (as referenced in past posts).
※It seems that I may need to set a flag to allow cleartext traffic, but where should I do that.
↓
Add the attribute <android:usesCleartextTraffic="true"> to the <application> element in the AndroidManifest.xml file.
and live updates is work!!
Thank you!!