Skip to content

Commit

Permalink
Merge pull request #2 from permutive/release/GLOB-51_1.1.0
Browse files Browse the repository at this point in the history
[Release] GLOB-51 Release v1.1.0 production release
  • Loading branch information
bibiette authored Oct 19, 2021
2 parents 605c548 + c2d4331 commit 2fa1532
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 0 deletions.
23 changes: 23 additions & 0 deletions Package.swift
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")
]
)
19 changes: 19 additions & 0 deletions README.md
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
```

0 comments on commit 2fa1532

Please sign in to comment.