Skip to content

Commit

Permalink
Fix Auth Combine build for watchOS
Browse files Browse the repository at this point in the history
  • Loading branch information
paulb777 committed Oct 28, 2024
1 parent dd0a4c6 commit d1b5662
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,13 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#if canImport(Combine) && swift(>=5.0)
#if canImport(Combine) && swift(>=5.0) && !os(watchOS)

import Combine
import FirebaseAuth

@available(swift 5.0)
@available(iOS 13.0, macOS 10.15, macCatalyst 13.0, tvOS 13.0, *)
@available(watchOS, unavailable)
public extension GameCenterAuthProvider {
/// Creates an `AuthCredential` for a Game Center sign in.
///
Expand Down

0 comments on commit d1b5662

Please sign in to comment.