Closed caalle closed 8 years ago
Not really an issue, I had release
-scheme set as default. After changing to debug
scheme in xcode react-native run-ios
is working.
Thanks for looking into it.
The same issue here. In android version. Any workaround for this problem?
@IsTheJack I had to register IntercomPackage
in MainApplication
to fix this error:
protected List<ReactPackage> getPackages() {
return Arrays.<ReactPackage>asList(
new MainReactPackage(),
new IntercomPackage()
);
}
I'm trying to get the iOS module to work. When running from xcode everything works fine, but when starting using
react-native run-ios
I getIntercomWrapper is undefined
when trying to log events.npm install react-native-intercom --save
rnpm link react-native-intercom
It is working fine on Android and on iOS when building/running from the xcode interface.
Anyone had a similar issue?