Skip to content

Commit

Permalink
fix: Camera permissions were not included, so I added them.
Browse files Browse the repository at this point in the history
  • Loading branch information
mathrunet committed Feb 29, 2024
1 parent c533d63 commit c371a04
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/katana_cli/lib/action/agora/agora.dart
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ class AgoraCliAction extends CliCommand with CliActionMixin {
.map((key, value) => MapEntry(key, value.toString()))
.where((key, value) => value.isNotEmpty),
);
await PodfilePermissionType.cameraUsage.enablePermissionToPodfile();
await PodfilePermissionType.microphoneUsage.enablePermissionToPodfile();
label("Add firebase functions");
final functions = Fuctions();
Expand Down

0 comments on commit c371a04

Please sign in to comment.