nativescript-community / sentry

A cross-platform application monitoring tool, with a focus on error reporting.
Apache License 2.0
14 stars 7 forks source link

An organization slug is required (provide with --org) on release android #11

Open ali4fun opened 2 years ago

ali4fun commented 2 years ago

I resolve this issue in my project to make these changes.

first I go to https://sentry.io/settings/masaar/ in setting top organization slug, then copy organization slug and add org: __SLUG__ line

config.plugins.push(
    new SentryCliPlugin({
      urlPrefix: SENTRY_PREFIX,
      rewrite: true,
       org: '__SLUG__',
      cleanArtifacts: true,
      release: `com.iklix.klix@${appVersion}+${buildNumber}`,
      dist: `${buildNumber}.${platform}`,
      ignoreFile: '.sentrycliignore',
      include: [dist, join(dist, SOURCEMAP_REL_DIR)],
    })
  );

then I get this error error: A project slug is required. then I resolve this error using to add org: __SLUG__ line in

config.plugins.push(
    new webpack.SourceMapDevToolPlugin({
      org: '__SLUG__',
      append: `\n//# sourceMappingURL=${SENTRY_PREFIX}[name].js.map`,
      filename: join(SOURCEMAP_REL_DIR, '[name].js.map'),
    })
  );

now my project is successful build release version.
Reference : https://github.com/getsentry/sentry-cli/issues/179

sorry for weak English.

farfromrefug commented 2 years ago

@ali4fun so is this an issue or do you just share the solution to your issue?