-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6385147
commit d5f1745
Showing
2 changed files
with
33 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,16 @@ | ||
License Rights and Restrictions | ||
LiveRamp grants to You, as a recipient of this Software Development Kit (“SDK”), subject to the conditions stated herein, a nonexclusive, nontransferable, limited license to: | ||
(a) internally use the SDK for the purposes of developing, testing, prototyping and demonstrating your applications, and utilizing the SDK to incorporate LiveRamp’s Authenticated Services (“ATS”) within those applications; and | ||
(b) redistribute the unmodified SDK and SDK Documentation, under the terms of this License, provided that You do not charge Your licensees any fees associated with such distribution or use of the SDK or ATS, including, without limitation, fees for products that include or are bundled with a copy of the SDK or for services that involve the use of the distributed SDK. | ||
You may make copies of the SDK to the extent reasonably necessary for exercising the license rights granted herein and for backup purposes. | ||
Your license is contingent on compliance with the following conditions: | ||
- You do not remove markings or notices of either LiveRamp's proprietary rights from the SDK, ATS, or associated Documentation; | ||
- You comply with all U.S. and applicable export control and economic sanctions laws and regulations that govern Your use of the SDKs (including technical data); | ||
- You do not cause or permit reverse engineering, disassembly or decompilation of the SDKs or ATS (except as allowed by law) by You nor allow an associated party to do so. | ||
For clarity, any source code that may be included in the distribution with the SDKs is provided solely for reference purposes and may not be modified, unless such source code is under Separate Terms permitting modification. | ||
Ownership | ||
LiveRamp or its licensors retain all ownership and intellectual property rights to the SDKs. | ||
Disclaimer of Warranties; Limitation of Liability | ||
THE SDKS ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. LIVERAMP FURTHER DISCLAIMS ALL WARRANTIES, EXPRESS AND IMPLIED, INCLUDING WITHOUT LIMITATION, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NONINFRINGEMENT. | ||
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW WILL LIVERAMP BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE SDK (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE SDK TO OPERATE WITH ANY OTHER SDKS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. | ||
|
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,17 @@ | ||
// 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: "LRAtsSDK", | ||
products: [ | ||
// Products define the executables and libraries a package produces, and make them visible to other packages. | ||
.library( | ||
name: "LRAtsSDK", | ||
targets: ["LRAtsSDK"]), | ||
], | ||
dependencies: [], | ||
targets: [ | ||
.binaryTarget(name: "LRAtsSDK", url: "https://ats-sdk-ios-prod.launch.liveramp.com/1.4.0/LRAtsSDK.zip", checksum: "5a7e7ce667bfd207b1cc1509efd78ccfe8ad07318a3c5e9d100444ad93c4cd30") | ||
] | ||
) |