Could I change RealmReactPackage.java
@Override
public List<Class<? extends JavaScriptModule>> createJSModules() {
return Collections.emptyList();
}
to
// @Override
public List<Class<? extends JavaScriptModule>> createJSModules() {
return Collections.emptyList();
}
?
It is listed under Breaking Changes: https://github.com/facebook/react-native/releases/tag/v0.47.0
I guess we must remove the method moving forward.
It looks like we need to remove the method rather than just the @override annotation.
It looks like we need to remove the method rather than just the @override annotation.
As I understand if you remove whole method, support for RN < 0.47 will be broken, only @override annotation should be removed
Most helpful comment
As I understand if you remove whole method, support for RN < 0.47 will be broken, only
@overrideannotation should be removed