dashx-ios
DashX SDK for iOS
Install
The minimum supported version for iOS is 12.0. To set the Minimum SDK target,
- Open your iOS project in XCode
- Select your Target > General > Deployment Info > Ensure that the version is set to 12.0+
Using Cocoapods
- Update your Podfile:
platform :ios, '12.0' # must be 12 or higher
# ...
target 'YOUR_TARGET_NAME' do
# ...
pod 'DashX'
# ...
end
- Open Terminal in your project's root directory and run:
pod install
Using Carthage
Specify the dependency in your Cartfile
:
github "dashxhq/dashx-ios"
Run the following command:
carthage update
Using Swift Package Manager
- In your Xcode project, go to File > Add Packages
- Paste the following URL in "Search or Enter Package URL":
https://github.com/dashxhq/dashx-ios.git
Usage
For detailed usage, refer to the documentation.