-
Notifications
You must be signed in to change notification settings - Fork 4
feat: scaffold Android part in Kotlin #5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
grabbou
commented
Nov 1, 2024
•
edited
Loading
edited
- for now, will throw an error
- upgraded to latest nitro (and latest codegen) and regenerated sources
- upgraded to latest React Native and updated template accordingly
- updated package namespaces to match closely what other Nitro packages do
- clean up peer dependencies / dependencies situation for the package and clearly set requirements for React Native
In a follow-up PR, I will implement basic functionality for sending and receiving messages so that we can begin comparing performance. |
@@ -7,7 +7,7 @@ import { | |||
import { NitroModules } from 'react-native-nitro-modules' | |||
|
|||
import { Blob } from './blob' | |||
import { WebSocket as HybridWebSocket, WebSocketManager } from './spec.nitro' | |||
import { WebSocket as HybridWebSocket, WebSocketManager } from './WebSocket.nitro' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is the WebSocket.nitro a valid name of the file? I can see that it is still spec.nitro in this PR
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah mistake 😂 Fixed later! I was just checking you 👀
* chore: initial commit * initial android working build * chore: link package * tweaks * feat: building version * chore: working prototype verified * chore: complete stubbing it out * clean up deps * update readme