Run Realm
App loads
I get "Cannot redefine property: logout" red screen error
First comment out subscription line as stated in https://github.com/realm/realm-js/issues/1711 . Import realm from anywhere and run app
import Realm from "realm";
Client OS & Version:
Any
Which debugger for React Native:
standard
i'm facing the same issue, any news?
Is there any people who solved this problem ?
I've done a little workaround that seems to be working for now. But i'm sure a proper fix would be required. The below changes are in \node_modules\realm\lib\extensions.js:132:15
Basically check if property logout already exists and if it does, remove it from the list of properties to be defined

@macceth it is not perfect, you will get an error when stopping remote debugging unfortunately. I will try to address this issue when i get a chance.
Not being able to debug apps while this bug exists :(
+1, We are unable to debug our react-native application because of this bug using the latest(2.3.5) version.
Remote debugging working fine on version 2.2.20
The API (and implementation) has changed a lot in v10.0.0. I am closing the issue.
Most helpful comment
I've done a little workaround that seems to be working for now. But i'm sure a proper fix would be required. The below changes are in \node_modules\realm\lib\extensions.js:132:15

Basically check if property logout already exists and if it does, remove it from the list of properties to be defined