Skip to content

Commit 59d51a1

Browse files
authored
Updater permission handle dependency (#14)
* Updater permission handle dependency * fix build
1 parent b1a1f7e commit 59d51a1

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# flutter-force-permission
22

3-
![Build](https://github.com/github/gogovan/flutter-force-permission/workflows/build.yaml/badge.svg)
3+
![Build](https://github.com/gogovan/flutter-force-permission/actions/workflows/build.yaml/badge.svg)
44
![codecov](https://codecov.io/gh/gogovan/flutter-force-permission/branch/main/graph/badge.svg?token=F9DPJUAVAJ)
55

66
Show permission disclosure page and allows required permissions and their associated services before
@@ -171,6 +171,13 @@ final config = FlutterForcePermissionConfig(
171171
);
172172
```
173173

174+
## Known Issues
175+
176+
- Currently it depends on our fork
177+
of [`flutter-permission-handler`](https://github.com/gogovan/flutter-permission-handler) instead
178+
of the original to fix an issue for iOS. You may track the
179+
issue and pull request [here](https://github.com/Baseflow/flutter-permission-handler/pull/967).
180+
174181
## Issues
175182

176183
## Contributing

pubspec.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,11 @@ dependencies:
1313
flutter:
1414
sdk: flutter
1515
meta: ^1.8.0
16-
permission_handler: ^10.2.0
16+
permission_handler:
17+
git:
18+
url: https://github.com/gogovan/flutter-permission-handler.git
19+
ref: master
20+
path: permission_handler
1721
app_settings: ^4.1.8
1822
shared_preferences: ^2.0.15
1923

0 commit comments

Comments
 (0)