I got sample code from https://developers.google.com/maps/documentation/android-api/location?hl=en
if (ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_FINE_LOCATION)
== PackageManager.PERMISSION_GRANTED) {
mMap.setMyLocationEnabled(true);
} else {
// Show rationale and request permission.
}
I uses above codes, but in Android Studio, ACCESS_FINE_LOCATION
is described as cannot resolve symbol ACCESS_FINE_LOCATION
with red color font. I already put <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
on my Androidmanifest
What should i do to solve this?