Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
Loading