I was following a tutorial and I got to a point where a lot of the code is deprecated.
ArrayList dataToSend = new ArrayList<>();
d
I found that I can replace NameValuePair with
Not really.
but I have no idea about the others
The entire HttpClient API that ships with Android itself is deprecated. The solution is to use a different HTTP client:
HttpUrlConnection
, from standard JavaWith respect to the tutorial, either: