Error : Cleartext HTTP traffic to … not permitted
Ao tentar se conectar no servidor DataSnap REST com o Android pode acontecer o seguinte erro:
Error : Cleartext HTTP traffic to … not permitted
Para corrigir este erro edite o arquivo AndroidManifest.template.xml do seu projeto.
Adicione uma linha com a tag: android:usesCleartextTraffic=”true”
Ficando como o exemplo a baixo:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
<?xml version="1.0" encoding="utf-8"?> <!-- BEGIN_INCLUDE(manifest) --> <manifest xmlns:android="http://schemas.android.com/apk/res/android" . . . <application android:persistent="%persistent%" android:usesCleartextTraffic="true" . . . <%provider%> <%application-meta-data%> <%services%> . . . <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <%activity%> <%receivers%> </application> </manifest> <!-- END_INCLUDE(manifest) --> |
No meu caso Não funcionou
Olá Aok, qual a versão do seu Delphi?