so im working on an app and the tutorial im using to learn the code he uses is depricated for the app version im using.
ArrayList<NameValuePair> dataToSend = new ArrayList<>();
dataToSend.add(new ("name", user.name));
dataToSend.add(new BasicNameValuePair("age", user.age + ""));
dataToSend.add(new BasicNameValuePair("username", user.username));
dataToSend.add(new BasicNameValuePair("password", user.password));
thats the code im getting and its depricated what do i use to replace them to fix this?