Commit 1759adb1 by Maurits van Beusekom Committed by GitHub

Merge pull request #565 from Baseflow/permission_handler_hotfix

hotfix
parents adad4367 dd7b106f
## 8.0.0+1
* Updated the README.md setup section about the Podfile and changed a minor spelling mistake.
## 8.0.0
This release contains the following **breaking changes**:
......
......@@ -63,9 +63,13 @@ You must list permission you want to use in your application :
target.build_configurations.each do |config|
... # Here are some configurations automatically generated by flutter
# You can remove unused permissions here
# for more infomation: https://github.com/BaseflowIT/flutter-permission-handler/blob/develop/permission_handler/ios/Classes/PermissionHandlerEnums.h
# e.g. when you don't need camera permission, just add 'PERMISSION_CAMERA=0'
# You can enable the permissions needed here. For example to enable camera
# permission, just remove the `#` character in front so it looks like this:
#
# ## dart: PermissionGroup.camera
# 'PERMISSION_CAMERA=1'
#
# Preprocessor definitions can be found in: https://github.com/Baseflow/flutter-permission-handler/blob/develop/permission_handler/ios/Classes/PermissionHandlerEnums.h
config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] ||= [
'$(inherited)',
......@@ -210,7 +214,7 @@ The following permissions will show no dialog:
- Notification
- Bluetooth
The following permissions will show no dialog, but will open the corrseponding setting intent for the user to change the permission status:
The following permissions will show no dialog, but will open the corresponding setting intent for the user to change the permission status:
- manageExternalStorage
- systemAlertWindow
......
name: permission_handler
description: Permission plugin for Flutter. This plugin provides a cross-platform (iOS, Android) API to request and check permissions.
version: 8.0.0
version: 8.0.0+1
homepage: https://github.com/baseflowit/flutter-permission-handler
flutter:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment