Skip to content

Commit

Permalink
Resolve unhandled exception on iOS (#1298)
Browse files Browse the repository at this point in the history
  • Loading branch information
mvanbeusekom authored Mar 27, 2024
1 parent 2db062f commit bbcd26c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
4 changes: 4 additions & 0 deletions permission_handler_platform_interface/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 4.2.1

* Resolves an error that occurred when calling the `shouldShowRequestPermissionRationale` on iOS.

## 4.2.0

* Adds a new permission `Permission.backgroundRefresh` to check the background refresh permission status on iOS & macOS platforms. This is a no-op on all other platforms.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import 'dart:async';

import 'package:flutter/foundation.dart';
import 'package:flutter/services.dart';

import '../../permission_handler_platform_interface.dart';
Expand Down Expand Up @@ -88,6 +89,10 @@ class MethodChannelPermissionHandler extends PermissionHandlerPlatform {
@override
Future<bool> shouldShowRequestPermissionRationale(
Permission permission) async {
if (defaultTargetPlatform != TargetPlatform.android) {
return false;
}

final shouldShowRationale = await _methodChannel.invokeMethod(
'shouldShowRequestPermissionRationale', permission.value);

Expand Down
2 changes: 1 addition & 1 deletion permission_handler_platform_interface/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: A common platform interface for the permission_handler plugin.
homepage: https://github.com/baseflow/flutter-permission-handler/tree/master/permission_handler_platform_interface
# NOTE: We strongly prefer non-breaking changes, even at the expense of a
# less-clean API. See https://flutter.dev/go/platform-interface-breaking-changes
version: 4.2.0
version: 4.2.1

dependencies:
flutter:
Expand Down

0 comments on commit bbcd26c

Please sign in to comment.