Commit e8e588ed by Maurits van Beusekom Committed by GitHub

Update iOS configuration documentation

parent 5035c0b4
...@@ -66,8 +66,10 @@ You must list permission you want to use in your application : ...@@ -66,8 +66,10 @@ You must list permission you want to use in your application :
```ruby ```ruby
post_install do |installer| post_install do |installer|
installer.pods_project.targets.each do |target| installer.pods_project.targets.each do |target|
... # Here are some configurations automatically generated by flutter
# Start of the permission_handler configuration
target.build_configurations.each do |config| target.build_configurations.each do |config|
... # Here are some configurations automatically generated by flutter
# You can enable the permissions needed here. For example to enable camera # You can enable the permissions needed here. For example to enable camera
# permission, just remove the `#` character in front so it looks like this: # permission, just remove the `#` character in front so it looks like this:
...@@ -122,7 +124,8 @@ You must list permission you want to use in your application : ...@@ -122,7 +124,8 @@ You must list permission you want to use in your application :
# 'PERMISSION_CRITICAL_ALERTS=1' # 'PERMISSION_CRITICAL_ALERTS=1'
] ]
end end
# End of the permission_handler configuration
end end
end end
``` ```
......
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