https://github.com/dashxhq/dashx-ios
DashX SDK for iOS
https://github.com/dashxhq/dashx-ios
ab-testing admin-panel automation billing cms feature-flags ios messaging notifications swift
Last synced: 24 days ago
JSON representation
DashX SDK for iOS
- Host: GitHub
- URL: https://github.com/dashxhq/dashx-ios
- Owner: dashxhq
- License: mit
- Created: 2021-08-24T09:50:14.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2023-08-14T17:32:17.000Z (almost 3 years ago)
- Last Synced: 2024-04-24T08:24:58.497Z (about 2 years ago)
- Topics: ab-testing, admin-panel, automation, billing, cms, feature-flags, ios, messaging, notifications, swift
- Language: Swift
- Homepage: https://docs.dashx.com/developer
- Size: 140 KB
- Stars: 0
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# dashx-ios
_DashX SDK for iOS_
## Install
The minimum supported version for iOS is 12.0. To set the Minimum SDK target,
1. Open your iOS project in XCode
2. Select your Target > **General** > **Deployment Info** > Ensure that the version is set to 12.0+
### Using Cocoapods
1. Update your Podfile:
```ruby
platform :ios, '12.0' # must be 12 or higher
# ...
target 'YOUR_TARGET_NAME' do
# ...
pod 'DashX'
# ...
end
```
2. Open Terminal in your project's root directory and run:
```sh
pod install
```
### Using Carthage
Specify the dependency in your `Cartfile`:
```
github "dashxhq/dashx-ios"
```
Run the following command:
```sh
carthage update
```
### Using Swift Package Manager
1. In your Xcode project, go to **File** > **Add Packages**
2. 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](https://docs.dashx.com).