From 3730928de2e1517c33a26982ce6089261bb32d2d Mon Sep 17 00:00:00 2001 From: Ivan Magda Date: Thu, 29 May 2025 14:55:31 +0300 Subject: [PATCH 1/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b049674..582ac99 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 From 815b71607cb0f8e2985d07b1c6406eb9486d2322 Mon Sep 17 00:00:00 2001 From: Rodrigo Soria Date: Thu, 11 Dec 2025 15:50:09 -0500 Subject: [PATCH 2/2] Fix background location on android 11 --- .../moko/permissions/location/LocationPermission.android.kt | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) 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,