Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions docs/platforms/apple/common/install/direct-install.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
title: Manual Install
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

m: We should also rename the file to manual-install.mdx to align.

description: "Integrate Sentry into your Xcode project by using our pre-compiled frameworks."
---

To integrate Sentry into your Xcode project, follow these steps:

1. Download the latest version of the SDK from the Sentry Cocoa [Releases page](https://github.com/getsentry/sentry-cocoa/releases).
2. Each release contains the following four framework options:
- Sentry-Dynamic.xcframework.zip: Dynamic framework
- Sentry.xcframework.zip: Static framework
- SentrySwiftUI.xcframework.zip: Framework with SwiftUI support
- Sentry-WithoutUIKitOrAppKit.xcframework.zip: Static framework without UIKit or AppKit linking and related features
3. Import chosen framework into your Xcode project target.
### Usage Guidelines:

• Use `Sentry-Dynamic`, `Sentry` (Static), or `Sentry-WithoutUIKitOrAppKit` independently. Only one of these should be included in your project at a time.
• If you're using `SentrySwiftUI`, it must be combined with `Sentry-Dynamic`.
9 changes: 9 additions & 0 deletions docs/platforms/apple/common/install/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,13 @@ sidebar_order: 1
description: "All the installation methods for the Apple platform."
---

We recommend installing the SDK through our [Sentry Wizard](https://github.com/getsentry/sentry-wizard) by running the following command inside your project directory:

```bash
brew install getsentry/tools/sentry-wizard && sentry-wizard -i ios
```

This will patch your project and configure the SDK. You'll only need to patch the project once, then you'll be able to add the patched files to your version control system.
If you prefer, you can choose one of the alternative methods below.

<PageGrid />
Loading