MY_PERMISSIONS_REQUEST_ACCESS_FINE_LOCATION permissão android não reconhecida no código

No momento, estamos tentando solicitar permissões de GPS de um telefone Android, para que possamos mostrar a localização atual em um mapa do Google. Incluímos esse manifesto, fora das tags do aplicativo, na tag manifest:

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

Aqui está a parte do nosso código que não está funcionando, não está reconhecendo MY_PERMISSIONS_REQUEST_ACCESS_FINE_LOCATION:

 if (ActivityCompat.checkSelfPermission(this,
            android.Manifest.permission.ACCESS_FINE_LOCATION)
            != PackageManager.PERMISSION_GRANTED) {
        // Should we show an explanation?
        if (ActivityCompat.shouldShowRequestPermissionRationale(this,
                android.Manifest.permission.ACCESS_FINE_LOCATION)) {
            // Show an explanation to the user *asynchronously* -- don't block
            // this thread waiting for the user's response! After the user
            // sees the explanation, try again to request the permission.
        } else {
            // No explanation needed, we can request the permission.
            ActivityCompat.requestPermissions(this,
                    new String[]{Manifest.permission.ACCESS_FINE_LOCATION}, MY_PERMISSIONS_REQUEST_ACCESS_FINE_LOCATION);
            // MY_PERMISSIONS_REQUEST_READ_CONTACTS is an
            // app-defined int constant. The callback method gets the
            // result of the request.
        }
    }

Também incluímos "import android.Manifest".

Desde já, obrigado!

questionAnswers(1)

yourAnswerToTheQuestion