Description
I'm following this documentation https://reactnative.dev/docs/turbo-native-modules-introduction#1-declare-typed-specification to extend my native module with onError listener. My first issue is when I try to add new function interface in the Spec file
addListener(eventName: string): void // Add an event listener
removeListeners(count: number): void // Remove event listeners
and update kotlin file with
fun removeListeners(count: Int) {
listenerCount -= count
}
the build fails due to 'count' being an Int.
My second issue is that I don't know how to subscribe to onError using New Architecture and the Spec file instead of importing NativeEventEmitter and NativeModules
I appreciate any help
Steps to reproduce
yarn android
React Native Version
0.76.3
Affected Platforms
Runtime - Android
Areas
TurboModule - The New Native Module System
Output of npx react-native info
System:
OS: macOS 15.1.1
CPU: (10) arm64 Apple M1 Pro
Memory: 104.56 MB / 16.00 GB
Shell:
version: "5.9"
path: /bin/zsh
Binaries:
Node:
version: 23.3.0
path: /opt/homebrew/bin/node
Yarn:
version: 1.22.21
path: /opt/homebrew/bin/yarn
npm:
version: 10.8.1
path: /usr/local/bin/npm
Watchman:
version: 2024.12.02.00
path: /opt/homebrew/bin/watchman
Managers:
CocoaPods:
version: 1.15.2
path: /opt/homebrew/bin/pod
SDKs:
iOS SDK:
Platforms:
- DriverKit 24.2
- iOS 18.2
- macOS 15.2
- tvOS 18.2
- visionOS 2.2
- watchOS 11.2
Android SDK: Not Found
IDEs:
Android Studio: 2022.3 AI-223.8836.35.2231.10811636
Xcode:
version: 16.2/16C5032a
path: /usr/bin/xcodebuild
Languages:
Java:
version: 18.0.1.1
path: /usr/bin/javac
Ruby:
version: 2.6.10
path: /usr/bin/ruby
npmPackages:
"@react-native-community/cli":
installed: 15.0.1
wanted: 15.0.1
react:
installed: 18.3.1
wanted: 18.3.1
react-native:
installed: 0.76.3
wanted: 0.76.3
react-native-macos: Not Found
npmGlobalPackages:
"*react-native*": Not Found
Android:
hermesEnabled: true
newArchEnabled: true
iOS:
hermesEnabled: true
newArchEnabled: true
Stacktrace or Logs
BUILD FAILED in 2s
error Failed to install the app. Command failed with exit code 1: ./gradlew app:installDebug -PreactNativeDevServerPort=8081
e: file:///.../NativeNfcManagerModule.kt:26:1 Class 'NativeNfcManagerModule' is not abstract and does not implement abstract base class member public abstract fun removeListeners(count: Double): Unit defined in com.nativenfcmanager.NativeNfcManagerSpec
e: file:///.../NativeNfcManagerModule.kt:60:7 'addListener' hides member of supertype 'NativeNfcManagerSpec' and needs 'override' modifier FAILURE: Build failed with an exception. * What went wrong:
Execution failed for task ':app:compileDebugKotlin'.
> A failure occurred while executing org.jetbrains.kotlin.compilerRunner.GradleCompilerRunnerWithWorkers$GradleKotlinCompilerWorkAction > Compilation error. See log for more details * Try:
> Run with --stacktrace option to get the stack trace.
> Run with --info or --debug option to get more log output.
> Run with --scan to get full insights.
> Get more help at https://help.gradle.org. BUILD FAILED in 2s.
info Run CLI with --verbose flag for more details.
error Command failed with exit code 1.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
Reproducer
sorry no link
Screenshots and Videos
No response
Description
I'm following this documentation https://reactnative.dev/docs/turbo-native-modules-introduction#1-declare-typed-specification to extend my native module with onError listener. My first issue is when I try to add new function interface in the Spec file
and update kotlin file with
the build fails due to 'count' being an Int.
My second issue is that I don't know how to subscribe to onError using New Architecture and the Spec file instead of importing NativeEventEmitter and NativeModules
I appreciate any help
Steps to reproduce
yarn android
React Native Version
0.76.3
Affected Platforms
Runtime - Android
Areas
TurboModule - The New Native Module System
Output of
npx react-native infoStacktrace or Logs
Reproducer
sorry no link
Screenshots and Videos
No response