Skip to content

Commit 7c2fa5b

Browse files
fix(auth, apple): remove incorrect paths in Package.swift files search paths (#18239)
1 parent e8d712d commit 7c2fa5b

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

packages/firebase_auth/firebase_auth/ios/firebase_auth/Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ let package = Package(
3333
.process("Resources"),
3434
],
3535
cSettings: [
36-
.headerSearchPath("include/firebase_auth/Private"),
37-
.headerSearchPath("include/firebase_auth/Public"),
36+
.headerSearchPath("include/Private"),
37+
.headerSearchPath("include/Public"),
3838
.define("LIBRARY_VERSION", to: "\"\(library_version)\""),
3939
.define("LIBRARY_NAME", to: "\"flutter-fire-auth\""),
4040
]

packages/firebase_auth/firebase_auth/macos/firebase_auth/Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ let package = Package(
3333
.process("Resources"),
3434
],
3535
cSettings: [
36-
.headerSearchPath("include/firebase_auth/Private"),
37-
.headerSearchPath("include/firebase_auth/Public"),
36+
.headerSearchPath("include/Private"),
37+
.headerSearchPath("include/Public"),
3838
.define("LIBRARY_VERSION", to: "\"\(library_version)\""),
3939
.define("LIBRARY_NAME", to: "\"flutter-fire-auth\""),
4040
]

0 commit comments

Comments
 (0)