Skip to content

Commit

Permalink
Release 2.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
CI committed Aug 25, 2022
0 parents commit a0fc7bb
Show file tree
Hide file tree
Showing 4 changed files with 94 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
*.xcframework*
*.xcodeproj
.DS_Store
.build
.swiftpm/
DerivedData/
Package.resolved
Packages/
xcuserdata/
34 changes: 34 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
Ditto Binary License

Copyright © 2019 DittoLive Incorporated. All rights reserved.

NOTICE: All information contained herein is, and remains the property of
DittoLive. The intellectual and technical concepts contained herein are
proprietary to DittoLive and may be covered by U.S. and Foreign Patents,
patents in process, and are protected by trade secret and copyright law.

Redistribution and use in binary form, with or without modification, is
permitted provided that the following conditions are met:

1. You agree not to attempt to decompile, disassemble, reverse engineer or
otherwise discover the source code from which the binary code was derived.

2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.

3. Neither the name of the copyright holder nor the names of its
contributors may be used to endorse or promote products derived from this
software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
28 changes: 28 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
// swift-tools-version:5.5

import PackageDescription

let package = Package(
name: "Ditto",
platforms: [ .iOS(.v11), .macOS(.v11) ],
products: [
.library(
name: "DittoSwift",
targets: ["DittoSwift"]),
.library(
name: "DittoObjC",
targets: ["DittoObjC"]),
],
targets: [
.binaryTarget(
name: "DittoSwift",
url: "https://software.ditto.live/cocoa/DittoSwift/2.0.2/dist/DittoSwift.xcframework.zip",
checksum: "2dda69f83324034bafe4b535f5669cb5c3409478104a11f993c751630df3829e"
),
.binaryTarget(
name: "DittoObjC",
url: "https://software.ditto.live/cocoa/DittoObjC/2.0.2/dist/DittoObjC.xcframework.zip",
checksum: "2c86f70d503c6cd6a0f356bb89fc94f33b9cfba91af31da7beadd0f8f59ebee0"
),
]
)
23 changes: 23 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Ditto Swift Package 📦

[![](https://img.shields.io/endpoint?url=https%3A%2F%2Fswiftpackageindex.com%2Fapi%2Fpackages%2Fgetditto%2FDittoSwiftPackage%2Fbadge%3Ftype%3Dswift-versions)](https://swiftpackageindex.com/getditto/DittoSwiftPackage) [![](https://img.shields.io/endpoint?url=https%3A%2F%2Fswiftpackageindex.com%2Fapi%2Fpackages%2Fgetditto%2FDittoSwiftPackage%2Fbadge%3Ftype%3Dplatforms)](https://swiftpackageindex.com/getditto/DittoSwiftPackage)

[![Ditto logo](https://www.ditto.live/_ipx/w_96,q_75/%2Flogos%2Flogo.png?url=%2Flogos%2Flogo.png&w=96&q=75)](https://www.ditto.live/)

Swift package for the `DittoSwift` and `DittoObjC` frameworks. This repo contains
only metadata for the Swift Package Manager to install our pre-built binaries.
See the [Tags](https://github.com/getditto/DittoSwiftPackage/tags) page for a list of
avaliable versions that can be installed. See our [Changelog](https://docs.ditto.live/changelog)
for details of each release.

See the Ditto [iOS installation documentation](https://docs.ditto.live/ios/installation/)
for details on how to get started and use this package in your app.

## ✍🏻 Author

Ditto ([email protected])

## 📄 License

Copyright © 2019 DittoLive Incorporated. All rights reserved.
See the [LICENSE](LICENSE.md) file for more info.

0 comments on commit a0fc7bb

Please sign in to comment.