Skip to content

Latest commit

 

History

History
49 lines (35 loc) · 1.4 KB

File metadata and controls

49 lines (35 loc) · 1.4 KB

import Tabs from '@theme/Tabs' import TabItem from '@theme/TabItem'

Installation

Notify API is available via Swift Package Manager or Cocoapods.

<Tabs queryString="ios-method" values={[ { label: 'SwiftPackageManager', value: 'spm', }, { label: 'Cocoapods', value: 'cocoa', }, ]}

You can add the WalletConnect Notify package to your project with the Swift Package Manager. In order to do that:

  1. Open XCode
  2. Go to File -> Add Packages
  3. Paste the repo GitHub URL: https://github.com/WalletConnect/WalletConnectSwiftV2
  4. Tap Add Package
  5. Select WalletConnectNotify check mark
  1. Update Cocoapods spec repos. Type in terminal pod repo update
  2. Initialize Podfile if needed with pod init
  3. Add pod to your Podfile:
pod 'WalletConnectSwiftV2/WalletConnectNotify'
  1. Install pods with pod install

If you encounter any problems during package installation, you can specify the exact path to the repository

pod 'WalletConnectSwiftV2/WalletConnectNotify', :git => 'https://github.com/WalletConnect/WalletConnectSwiftV2.git', :tag => '1.8.0'

Next Steps

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