Skip to content
Merged
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-bump-clerk-android-1-0-37.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@clerk/expo': patch
---

Bump the bundled `clerk-android` SDK (`clerk-android-api` and `clerk-android-ui`) from `1.0.36` to `1.0.37`. See the Clerk Android release: https://github.com/clerk/clerk-android/releases/tag/v1.0.37.
4 changes: 2 additions & 2 deletions packages/expo/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ def clerkExpoVersion = clerkExpoPackageJson.version.toString()
// See: https://docs.gradle.org/current/userguide/version_catalogs.html for app-level version catalogs
ext {
kotlinxCoroutinesVersion = "1.7.3"
clerkAndroidApiVersion = "1.0.36"
clerkAndroidUiVersion = "1.0.36"
clerkAndroidApiVersion = "1.0.37"
clerkAndroidUiVersion = "1.0.37"
Comment on lines +23 to +24

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🗄️ Data Integrity & Integration | 🟠 Major | ⚡ Quick win

Update the E2E template’s Clerk pin as well.

integration/templates/expo-native/modules/e2e-hooks/android/build.gradle:39-48 still compiles against clerk-android-api:1.0.36, while this module now ships 1.0.37. Keep the compile-time and runtime SDK versions aligned to avoid API or runtime incompatibilities.

Proposed fix
-compileOnly("com.clerk:clerk-android-api:1.0.36") {
+compileOnly("com.clerk:clerk-android-api:1.0.37") {
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@packages/expo/android/build.gradle` around lines 23 - 24, Update the Clerk
version pins in the E2E template’s android/build.gradle so its clerk-android-api
and related Clerk UI dependencies use 1.0.37, matching clerkAndroidApiVersion
and clerkAndroidUiVersion in the main Expo build configuration. Keep the
template’s compile-time and runtime SDK versions aligned.

composeVersion = "1.7.0"
activityComposeVersion = "1.9.0"
lifecycleVersion = "2.8.0"
Expand Down
Loading