Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

No Network Security Config specified, using platform default

I'm trying to print a list of values in ListView from a webpage. I have the two permission

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

However I'm getting this message,

D/NetworkSecurityConfig: No Network Security Config specified, using platform default

I'm not sure what it means and how to fixed.

like image 728
Julian Andres F M Avatar asked Mar 10 '23 07:03

Julian Andres F M


1 Answers

The message you're getting isn't an error; it's just letting you know that you're not using a Network Security Configuration. If you want to add one, take a look at this page on the Android Developers website: https://developer.android.com/training/articles/security-config.html.

like image 126
Nahuel Cabrera Avatar answered Mar 24 '23 13:03

Nahuel Cabrera