Skip to content

Commit 7bddbbe

Browse files
committed
fix(expo): avoid appcheckcore google sign-in regression
1 parent f4ecc13 commit 7bddbbe

2 files changed

Lines changed: 8 additions & 0 deletions

File tree

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@clerk/expo': patch
3+
---
4+
5+
Fixes iOS prebuild failures caused by newer Google Sign-In pod dependencies by avoiding the AppCheckCore version that requires additional CocoaPods modular header configuration.

packages/expo/ios/ClerkGoogleSignIn.podspec

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ Pod::Spec.new do |s|
1616
s.static_framework = true
1717

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

2023
# Only include the Google Sign-In module files
2124
s.source_files = 'ClerkGoogleSignInModule.swift', 'ClerkGoogleSignInModule.m'

0 commit comments

Comments
 (0)