Skip to content

Commit 753824b

Browse files
authored
fix(android): Resolve "[PermissionRequestInProgressException]" when a… (#1425)
1 parent e454f84 commit 753824b

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

permission_handler_android/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,22 @@
1+
2+
## 13.0.1
3+
4+
* fix: Resolve `PermissionRequestInProgressException` when app is relaunched with non-standard launchMode.
5+
16
## 13.0.0
27

38
- **BREAKING CHANGES:** When updating to version 13.0.0 make sure to also set the `compileSdkVersion` in the `app/build.gradle` file to `35`.
49
- Updates Android `compileSdkVersion: 33` to `35`
510
- Updates Android `com.android.tools.build:gradle:8.0.0` to `com.android.tools.build:gradle:8.0.2`
611
- Updates Android `sourceCompatibility = JavaVersion.VERSION_1_8` to `sourceCompatibility = JavaVersion.VERSION_17`
712

13+
814
## 12.1.0
915

1016
- Updates the package to correctly support Flutter 3.29.
1117
- Migrates away from deprecated imperative Gradle plugins.
1218

19+
1320
## 12.0.13
1421

1522
- Updates the Android min SDK to 19 (from 16).

permission_handler_android/android/src/main/java/com/baseflow/permissionhandler/PermissionManager.java

+1
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,7 @@ public boolean onRequestPermissionsResult(
174174
}
175175

176176
if (permissions.length == 0 && grantResults.length == 0) {
177+
pendingRequestCount = 0;
177178
Log.w(PermissionConstants.LOG_TAG, "onRequestPermissionsResult is called without results. This is probably caused by interfering request codes. If you see this error, please file an issue in flutter-permission-handler, including a list of plugins used by this application: https://github.com/Baseflow/flutter-permission-handler/issues");
178179
return false;
179180
}

permission_handler_android/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: permission_handler_android
22
description: Permission plugin for Flutter. This plugin provides the Android API to request and check permissions.
33
homepage: https://github.com/baseflow/flutter-permission-handler
4-
version: 13.0.0
4+
version: 13.0.1
55

66
environment:
77
sdk: ^3.5.0

0 commit comments

Comments
 (0)