Skip to content

Commit

Permalink
Fix Auth Combine build for watchOS (#13984)
Browse files Browse the repository at this point in the history
  • Loading branch information
paulb777 authored Oct 29, 2024
1 parent dd0a4c6 commit a0ad239
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) && !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 a0ad239

Please sign in to comment.