React-Native crashes only show the obfuscated point of error

Hi there,

When Sentry catches an Exception, it only shows me the line from the “minified” version of the bundle. I’m using CodePush for iOS and Android.

I’ve already set up CodePush with Sentry:

codePush.getUpdateMetadata().then((update) => {
	if (update) {
		Sentry.setRelease(update.appVersion + '-codepush:' + update.label);
	}
});

Sentry shows me the error from “index.android.bundle”, which is already minified. I can’t figure out exactly what caused the problem.

TypeError: undefined is not an object (evaluating 'this.state.chart.info')
  at ? (app:///index.android.bundle:1317:12939)
  at p(app:///index.android.bundle:112:423)
  at ? (app:///index.android.bundle:112:1740)
  at p(app:///index.android.bundle:112:423)
  at n(app:///index.android.bundle:112:898)
  at ? (app:///index.android.bundle:112:1273)
  at c(app:///index.android.bundle:108:205)
  at b(app:///index.android.bundle:108:1623)
  at _(app:///index.android.bundle:108:488)
  at u(app:///index.android.bundle:112:1257)
  at _invoke(app:///index.android.bundle:112:1309)
  at async(app:///index.android.bundle:112:3681)
  at value(app:///index.android.bundle:1317:12803)
  at value(app:///[native code]:0:0)
  at ? (app:///index.android.bundle:1317:11008)
  at y(app:///index.android.bundle:114:661)
  at callTimers(app:///index.android.bundle:114:2718)
  at value(app:///index.android.bundle:38:3676)
  at ? (app:///index.android.bundle:38:832)
  at value(app:///index.android.bundle:38:2930)
  at value(app:///index.android.bundle:38:804)
  at value(app:///[native code]:0:0)

Is there a way Sentry can tell me what line threw the error, from a non-minified version of the code?