This commit is contained in:
Your Name 2025-03-23 13:09:22 +03:00
parent 8ab75b21bd
commit 1eaabcbb4a

View file

@ -51,6 +51,7 @@ public class PostRequest {
Call call = client.newCall(request);
call.enqueue(new Callback() {
public void onResponse(@NonNull Call call, @NonNull Response response) throws IOException {
Log.i("RESP", response.toString()); // STATIC
onPostExecute(response.body() != null ? response.body().string() : "");
}