-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from permutive/release/GLOB-51_1.1.0
[Release] GLOB-51 Release v1.1.0 production release
- Loading branch information
Showing
2 changed files
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
// swift-tools-version:5.3 | ||
// The swift-tools-version declares the minimum version of Swift required to build this package. | ||
|
||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "Permutive_iOS", | ||
platforms: [.macOS(.v10_15), .iOS(.v11)], | ||
products: [ | ||
// Products define the executables and libraries produced by a package, and make them visible to other packages. | ||
.library( | ||
name: "Permutive_iOS", | ||
targets: ["Permutive_iOS"]), | ||
], | ||
dependencies: [ | ||
// Dependencies declare other packages that this package depends on. | ||
], | ||
targets: [ | ||
.binaryTarget(name:"Permutive_iOS", | ||
url:"https://storage.googleapis.com/permutive-ios-sdks/swift-sdk/Permutive-iOS-v1.1.0.zip", | ||
checksum: "8e7ba64f5aeba659d743730f8790cb5e22017a4f085baf3b9b84aa05213647f2") | ||
] | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Permutive iOS SDK Swift Package | ||
|
||
This repo provides SPM support for Permutive iOS and Catalyst SDK. | ||
|
||
You can find tvOS support [here](https://github.com/permutive/permutive-tvos-spm). | ||
|
||
Please refer to the SDK documentation [here](https://developer.permutive.com/docs/ios). | ||
Get the latest release notes [here](https://developer.permutive.com/docs/ios-release-notes). | ||
|
||
# Use Cocoapods? | ||
|
||
Easily include Permutive SDK in your Podfile: | ||
|
||
``` | ||
target 'Your Target' do | ||
platform :ios, '11.0' | ||
pod 'Permutive_iOS', '~> 1.1.0' | ||
end | ||
``` |