Fullstory doesn’t build on android it fails with the below error:
```
TypeError: null is not an object (evaluating 'FullStory.LogLevel = LogLevel')
ERROR Invariant Violation: "main" has not been registered. This can happen if:
* Metro (the local dev server) is run from the wrong folder. Check if Metro is running, stop it and restart it in the current project.
* A module failed to load due to an error and `AppRegistry.registerComponent` wasn't called.
```
has anyone experienced this? If so how did you solve it. Also I see this If you want to use the Metro Server for local development, we recommend disabling FullStory for these builds. How do i disable the plugin in metro?
I tried this as a hack but not sure its the best way to handle this because android users are always anonymous. I created 2 files :
--- index.ts
```
import FullStory from '@fullstory/react-native';export function fullStoryIndentify(user) { FullStory.indentify(user.oid, {displayName: user.name, email: user.email})}
```
--- index.android.ts
```
import FullStory from '@fullstory/react-native';export function fullStoryIndentify(user) {}
```
