Skip to content

Commit 2a847d7

Browse files
[camera_avfoundation] Correct pigeon configuration output paths (#9313)
Updates the output paths in the pigeon configuration. I missed this when I separated the implementation into separate targets for SwiftPM (moving the ObjC part into the `camera_avfoundation_objc` directory). Resolves: flutter/flutter#168312 ## Pre-Review Checklist [^1]: Regular contributors who have demonstrated familiarity with the repository guidelines only need to comment if the PR is not auto-exempted by repo tooling.
1 parent d692e43 commit 2a847d7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/camera/camera_avfoundation/pigeons/messages.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ import 'package:pigeon/pigeon.dart';
77
@ConfigurePigeon(PigeonOptions(
88
dartOut: 'lib/src/messages.g.dart',
99
objcHeaderOut:
10-
'ios/camera_avfoundation/Sources/camera_avfoundation/include/camera_avfoundation/messages.g.h',
10+
'ios/camera_avfoundation/Sources/camera_avfoundation_objc/include/camera_avfoundation/messages.g.h',
1111
objcSourceOut:
12-
'ios/camera_avfoundation/Sources/camera_avfoundation/messages.g.m',
12+
'ios/camera_avfoundation/Sources/camera_avfoundation_objc/messages.g.m',
1313
objcOptions: ObjcOptions(
1414
prefix: 'FCP',
1515
headerIncludePath: './include/camera_avfoundation/messages.g.h',

0 commit comments

Comments
 (0)