Skip to content

Conversation

@Tino-F
Copy link
Contributor

@Tino-F Tino-F commented Jan 21, 2026

Issue:
When using react-native-wgpu with Expo (New Architecture enabled), the component fails to register and shows "Unimplemented component: <WebGPUView>".

Root Cause:
There's a typo in package.json's codegenConfig. The property componentProviders (plural) should be componentProvider (singular) to match React Native's expected schema.

Current (broken):

"ios": {
  "componentProviders": {
    "WebGPUView": "WebGPUView"
  }
}

Should be:

"ios": {
  "componentProvider": {
    "WebGPUView": "WebGPUView"
  }
}

#291

…ture

"componentProviders" should be "componentProvider"
@wcandillon
Copy link
Owner

Nice, thank you for catching this :)

@wcandillon wcandillon self-requested a review January 21, 2026 08:11
@wcandillon wcandillon merged commit 6a5d2c2 into wcandillon:main Jan 21, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants