Skip to content
Draft
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/fullscreen-auth-view.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@clerk/expo": patch
---

Fix native iOS auth view presentation for full screen UIViewController flows.
9 changes: 9 additions & 0 deletions .changeset/remove-expo-present-auth.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
'@clerk/expo': minor
---

Update the beta Expo prebuilt component APIs to align more closely with the native Clerk SDKs.

Remove unused Expo prebuilt-view bridge code: the native `presentAuth` and `presentUserProfile` bridges, Android presentation activities/factory paths, the user-profile modal hook, and stale `Inline*` source files now superseded by app-presented `AuthView` and `UserProfileView`.

Align `UserButton` with the native Clerk SDKs by wrapping the platform-native user button, letting it present the user profile from the button itself.
13 changes: 0 additions & 13 deletions packages/expo/android/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,17 +1,4 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application>
<!-- Clerk Auth Activity - hosts AuthView for sign-in/sign-up flows -->
<activity
android:name="expo.modules.clerk.ClerkAuthActivity"
android:theme="@style/Theme.AppCompat.Light.NoActionBar"
android:exported="false"
android:windowSoftInputMode="adjustResize" />

<!-- Clerk User Profile Activity - hosts UserProfileView for account management -->
<activity
android:name="expo.modules.clerk.ClerkUserProfileActivity"
android:theme="@style/Theme.AppCompat.Light.NoActionBar"
android:exported="false"
android:windowSoftInputMode="adjustResize" />
</application>
</manifest>

This file was deleted.

Loading
Loading