diff --git a/README.md b/README.md index 1fd8b22..2e865fe 100755 --- a/README.md +++ b/README.md @@ -201,7 +201,7 @@ All development (both new features and bug fixes) is performed in `develop` bran The `develop` branch is pushed to `master` during release. -More detailed guide for contributers see in [contributing guide](CONTRIBUTING.md). +More detailed guide for contributors see in [contributing guide](CONTRIBUTING.md). ## License diff --git a/permissions-location/src/androidMain/kotlin/dev/icerock/moko/permissions/location/LocationPermission.android.kt b/permissions-location/src/androidMain/kotlin/dev/icerock/moko/permissions/location/LocationPermission.android.kt index abe446d..71cfeac 100644 --- a/permissions-location/src/androidMain/kotlin/dev/icerock/moko/permissions/location/LocationPermission.android.kt +++ b/permissions-location/src/androidMain/kotlin/dev/icerock/moko/permissions/location/LocationPermission.android.kt @@ -35,11 +35,7 @@ actual val backgroundLocationDelegate = object : PermissionDelegate { override fun getPlatformPermission() = if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.S) { - listOf( - Manifest.permission.ACCESS_FINE_LOCATION, - Manifest.permission.ACCESS_COARSE_LOCATION, - Manifest.permission.ACCESS_BACKGROUND_LOCATION, - ) + listOf(Manifest.permission.ACCESS_BACKGROUND_LOCATION) } else if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) { listOf( Manifest.permission.ACCESS_FINE_LOCATION,