> ## Documentation Index
> Fetch the complete documentation index at: https://docs.walletconnect.network/llms.txt
> Use this file to discover all available pages before exploring further.

# Installation

* Add `reown_walletkit` as dependency in your `pubspec.yaml` and run `flutter pub get` (check out the [latest version](https://pub.dev/packages/reown_walletkit/install))
* Or simply run `flutter pub add reown_walletkit`

<Note>
  If you are on **Android** add jitpack support to your android (project's) build.gradle file

  ```
  allprojects {
      repositories {
          google()
          mavenCentral()
          maven { url 'https://jitpack.io' } // <- add jipack url
      }
  }
  ```

  If you are on **MacOS** add the following to your `DebugProfile.entitlements` and `Release.entitlements` files to connect to the WebSocket server.

  ```xml theme={null}
  <key>com.apple.security.network.client</key>
  <true/>
  ```
</Note>

## Next Steps

Now that you've installed Wallet SDK SDK, you're ready to start integrating it. The next section will walk you through the process of setting up your project to use the SDK.
