delphi 解决android 9上无法使用http协议
安卓9不让客户端通过非https方式访问服务端数据(不允许发送明文http请求)的问题。
解决方法:
1、选择安卓平台编译一次程序,在项目根目录下会生成如下文件AndroidManifest.template.xml2、打开此文件,在正确位置加上以下权限即可:android:usesCleartextTraffic="true"直接在AndroidManifest.template.xml中定义使用http访问!