Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/expo-google-appcheckcore-pin.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@clerk/expo': patch
---

Fixes iOS prebuild failures caused by newer Google Sign-In pod dependencies by avoiding the AppCheckCore version that requires additional CocoaPods modular header configuration.
3 changes: 3 additions & 0 deletions packages/expo/ios/ClerkGoogleSignIn.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ Pod::Spec.new do |s|
s.static_framework = true

s.dependency 'GoogleSignIn', '~> 9.0'
# AppCheckCore 11.3.0 introduces a RecaptchaInterop dependency that fails
# static CocoaPods integration unless apps opt into modular headers.
s.dependency 'AppCheckCore', '< 11.3.0'

# Only include the Google Sign-In module files
s.source_files = 'ClerkGoogleSignInModule.swift', 'ClerkGoogleSignInModule.m'
Expand Down
Loading