Open InevitableAnup opened 7 years ago
Since RN >=0.47 you should delete the @override into package
@Override public List<Class<? extends JavaScriptModule>> createJSModules() { return Collections.emptyList(); }
Change for
public List<Class<? extends JavaScriptModule>> createJSModules() { return Collections.emptyList(); }
not sure what has to be done to get this into the npm system ? no changes to this project in 9+months...
Hi I am trying to integrate react-native-bluetooth-serial into my react-native app.I followed the documentation and completed these 3 steps:- 1)Install package via npm: npm i -S react-native-bluetooth-serial 2)Link libraries with: rnpm link or react-native link for React Native >= 0.27 3)For android you also need to put following code to AndroidManifest.xml
After this I ran react-native run-android and the app started failing with the following error:- 1 error :react-native-bluetooth-serial:compileReleaseJavaWithJavac FAILED
Please revert as soon as possible. Thank you.