Volley RequestQueue is not working (Kotlin)
I have a LoginActivity that has a very simple layout with 2 EditText's (username and password) and 1 Button (login button).
I want to perform a POST request to a server when the login button is pressed.
I am using Volley.
Here's the code
class LoginActivity : AppCompatActivity() {
private lateinit var loginButton: Button
private lateinit var loginNameEditText: EditText
private lateinit var passwordEditText: EditText
private lateinit var queue: RequestQueue
override fun...