martincik/react-native-hockeyapp

Feedback/Crash does not show up in HockeyApp

rajeshsivakumar opened this issue · 0 comments

I followed the instructions and tried to generate feedback and the default crash from the application, but do not see them in HockeyApp. I have used the right App Id from HockeyApp. I am trying to generate the feedback form on signing out of the application.

Here is the React-Native code:

componentWillReceiveProps(nextProps) {
if (nextProps.showFeedbackForm === true) {
HockeyApp.start();
HockeyApp.feedback();
}
}

componentDidMount() {
    HockeyApp.start();
    HockeyApp.checkForUpdate();
    HockeyApp.generateTestCrash();
}

componentWillMount() {
    HockeyApp.configure({HOCKEYAPP_ID}, true);
}

Any idea what i may be dong wrong? Any help would be greatly appreciated. Thanks.