Skip to content

Commit

Permalink
[expo-go] Fix import from next (#28245)
Browse files Browse the repository at this point in the history
# Why

This should fix
https://github.com/expo/expo/actions/runs/8714487185/job/23904809794 -
failing on main

# How

Update import, now that `next` is default we need to import `legacy`
here.

# Test Plan

CI
  • Loading branch information
brentvatne committed Apr 17, 2024
1 parent 0546595 commit 74df20a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import expo.modules.blur.BlurModule
import expo.modules.brightness.BrightnessModule
import expo.modules.calendar.CalendarModule
import expo.modules.camera.CameraViewModule
import expo.modules.camera.next.CameraViewNextModule
import expo.modules.camera.legacy.CameraViewLegacyModule
import expo.modules.cellular.CellularModule
import expo.modules.clipboard.ClipboardModule
import expo.modules.constants.ConstantsModule
Expand Down Expand Up @@ -148,7 +148,7 @@ object ExperiencePackagePicker : ModulesProvider {
BlurModule::class.java,
CalendarModule::class.java,
CameraViewModule::class.java,
CameraViewNextModule::class.java,
CameraViewLegacyModule::class.java,
CellularModule::class.java,
ClipboardModule::class.java,
CryptoModule::class.java,
Expand Down

0 comments on commit 74df20a

Please sign in to comment.