diff --git a/docs/platforms/android/index.mdx b/docs/platforms/android/index.mdx index 8cec100106c621..dfc5c465c9b023 100644 --- a/docs/platforms/android/index.mdx +++ b/docs/platforms/android/index.mdx @@ -59,35 +59,35 @@ npx @sentry/wizard@latest -i android ``` ```bash {tabTitle:macOS (Intel/x64)} -downloadUrl="https://github.com/getsentry/sentry-wizard/releases/download/v4.0.1/sentry-wizard-darwin-x64" +downloadUrl="https://github.com/getsentry/sentry-wizard/releases/download/v5.1.0/sentry-wizard-darwin-x64" curl -L $downloadUrl -o sentry-wizard chmod +x sentry-wizard ./sentry-wizard -i android ``` ```bash {tabTitle:macOS (Apple Silicon/arm64)} -downloadUrl="https://github.com/getsentry/sentry-wizard/releases/download/v4.0.1/sentry-wizard-darwin-arm64" +downloadUrl="https://github.com/getsentry/sentry-wizard/releases/download/v5.1.0/sentry-wizard-darwin-arm64" curl -L $downloadUrl -o sentry-wizard chmod +x sentry-wizard ./sentry-wizard -i android ``` ```bash {tabTitle:Linux (x64)} -downloadUrl="https://github.com/getsentry/sentry-wizard/releases/download/v4.0.1/sentry-wizard-linux-x64" +downloadUrl="https://github.com/getsentry/sentry-wizard/releases/download/v5.1.0/sentry-wizard-linux-x64" curl -L $downloadUrl -o sentry-wizard chmod +x sentry-wizard ./sentry-wizard -i android ``` ```bash {tabTitle:Linux (arm64)} -downloadUrl="https://github.com/getsentry/sentry-wizard/releases/download/v4.0.1/sentry-wizard-linux-arm64" +downloadUrl="https://github.com/getsentry/sentry-wizard/releases/download/v5.1.0/sentry-wizard-linux-arm64" curl -L $downloadUrl -o sentry-wizard chmod +x sentry-wizard ./sentry-wizard -i android ``` ```powershell {tabTitle:Windows} -$downloadUrl = "https://github.com/getsentry/sentry-wizard/releases/download/v4.0.1/sentry-wizard-win-x64.exe" +$downloadUrl = "https://github.com/getsentry/sentry-wizard/releases/download/v5.1.0/sentry-wizard-win-x64.exe" Invoke-WebRequest $downloadUrl -OutFile sentry-wizard.exe ./sentry-wizard.exe -i android ``` diff --git a/docs/platforms/dart/guides/flutter/index.mdx b/docs/platforms/dart/guides/flutter/index.mdx index 62ba6f6e5e19e7..c963ce367208f1 100644 --- a/docs/platforms/dart/guides/flutter/index.mdx +++ b/docs/platforms/dart/guides/flutter/index.mdx @@ -38,17 +38,52 @@ Select which Sentry features you'd like to install in addition to Error Monitori Sentry captures data by using an SDK within your application's runtime. These are platform-specific and allow Sentry to have a deep understanding of how your application works. -To install, run `@sentry/wizard`: +We recommend installing the SDK through our [Sentry Wizard](https://github.com/getsentry/sentry-wizard) by running one of the following commands inside your project directory: ```bash {tabTitle:brew} brew install getsentry/tools/sentry-wizard && sentry-wizard -i flutter ``` +```powershell {tabTitle:Windows} +$downloadUrl = "https://github.com/getsentry/sentry-wizard/releases/download/v5.1.0/sentry-wizard-win-x64.exe" +Invoke-WebRequest $downloadUrl -OutFile sentry-wizard.exe +./sentry-wizard.exe -i flutter +``` + +```bash {tabTitle:macOS (Intel/x64)} +downloadUrl="https://github.com/getsentry/sentry-wizard/releases/download/v5.1.0/sentry-wizard-darwin-x64" +curl -L $downloadUrl -o sentry-wizard +chmod +x sentry-wizard +./sentry-wizard -i flutter +``` + +```bash {tabTitle:macOS (Apple Silicon/arm64)} +downloadUrl="https://github.com/getsentry/sentry-wizard/releases/download/v5.1.0/sentry-wizard-darwin-arm64" +curl -L $downloadUrl -o sentry-wizard +chmod +x sentry-wizard +./sentry-wizard -i flutter +``` + +```bash {tabTitle:Linux (x64)} +downloadUrl="https://github.com/getsentry/sentry-wizard/releases/download/v5.1.0/sentry-wizard-linux-x64" +curl -L $downloadUrl -o sentry-wizard +chmod +x sentry-wizard +./sentry-wizard -i flutter +``` + +```bash {tabTitle:Linux (arm64)} +downloadUrl="https://github.com/getsentry/sentry-wizard/releases/download/v5.1.0/sentry-wizard-linux-arm64" +curl -L $downloadUrl -o sentry-wizard +chmod +x sentry-wizard +./sentry-wizard -i flutter +``` + ```bash {tabTitle:npx} npx @sentry/wizard@latest -i flutter ``` -[Sentry Wizard](https://github.com/getsentry/sentry-wizard) will patch your project accordingly, though you can [set up manually](/platforms/dart/guides/flutter/manual-setup/) if you prefer. You only need to patch the project once. Then you can add the patched files to your version control system. +This will patch your project and configure the SDK. You only need to patch the project once, then you can add the patched files to your version control system. +If you prefer, you can also [set up the SDK manually](/platforms/dart/guides/flutter/manual-setup/) or follow the instructions below to adapt the [configuration](#configure). diff --git a/docs/platforms/dart/guides/flutter/manual-setup.mdx b/docs/platforms/dart/guides/flutter/manual-setup.mdx index 2b876fcb6cdb86..cbf07999b9b45a 100644 --- a/docs/platforms/dart/guides/flutter/manual-setup.mdx +++ b/docs/platforms/dart/guides/flutter/manual-setup.mdx @@ -51,7 +51,6 @@ Future main() async { options.profilesSampleRate = 1.0; // ___PRODUCT_OPTION_END___ profiling // ___PRODUCT_OPTION_START___ logs - // Enable logs to be sent to Sentry options.enableLogs = true; // ___PRODUCT_OPTION_END___ logs