Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

338
Visualizações
Cleartext http traffic not permitted

I'm working in one project and I'm stuck in the implementation of login/signup page. When I try to implement the code it gives me the error Cleartext HTTP traffic to 192.168.1.130 not permitted. I checked the ipconfig and that was my IPv4 so I have added 192.168.1.130, but I have also checked 127.0.0.1, but that one doesn't work either.

I have tried implementing <domain includeSubdomains="true">192.168.1.130</domain> however that one doesn't work(implementation of android:usesCleartextTraffic="true" doesn't work either).

I'm using XAMPP for the back-end and if I run php code everything works good, so no problem with that. Problem is in the Android Studio(I'm using Kotlin).

For the Emulator I'm using Genymotion emulator(it uses VirtualBox).

Here's the code for the button that takes the url. I have checked everything, but still nothing achieved.

login.setOnClickListener {
            var url = "http://192.168.1.130/php/login.php?mobile=" + login_user.text.toString() +
                    "&password=" + login_password.text.toString()
over 4 years ago · Santiago Trujillo
3 Respostas
Responde à pergunta

0

To do this in Android 9 Pie you will have to set a networkSecurityConfig in your Manifest application tag like this:

<?xml version="1.0" encoding="utf-8"?>
<manifest ... >
     <application android:networkSecurityConfig="@xml/network_security_config">
     </application>
</manifest>

Then create a xml file named network_security_config just like the way you have named it in the Manifest and the content of your file should be like this👇to enable all requests without encryptions:

<?xml version="1.0" encoding="utf-8"?>
<network-security-config>
    <base-config cleartextTrafficPermitted="true">
        <trust-anchors>
            <certificates src="system" />
        </trust-anchors>
    </base-config>
</network-security-config>

If this is not working, please make your request from a secure domain(HTTPS).

over 4 years ago · Santiago Trujillo Relatório

0

Add this into your Manifest

android:usesCleartextTraffic="true"

like this..

<application
    android:icon="@mipmap/ic_launcher"
    android:usesCleartextTraffic="true"
    android:label="@string/app_name"
    android:theme="@style/AppTheme">
...
 </application>
over 4 years ago · Santiago Trujillo Relatório

0

I also faced the same issue recently with android 9 pie.

I added in my Manifest

android:usesCleartextTraffic="true"
tools:ignore="UnusedAttribute"

second line is mentioned is to ignore the warning for SDK less than 23.

over 4 years ago · Santiago Trujillo Relatório
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda