Skip to content

Commit

Permalink
Update for 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
moonsense-ci committed Aug 5, 2022
1 parent d47d83a commit 68a4a53
Show file tree
Hide file tree
Showing 12 changed files with 44 additions and 44 deletions.
8 changes: 4 additions & 4 deletions Package.swift
Expand Up @@ -18,13 +18,13 @@ let package = Package(
targets: [
.binaryTarget(
name: "MoonsenseSDK",
url: "https://dl.moonsense.io/basic/sdk/raw/names/MoonsenseSDK.xcframework/versions/1.0.0/MoonsenseSDK.xcframework-1.0.0.zip",
checksum: "32c9095f28ea48d6b91743d11798750aed13c87b17d685dca19b67b9e4fcb734"
url: "https://dl.moonsense.io/basic/sdk/raw/names/MoonsenseSDK.xcframework/versions/1.1.0/MoonsenseSDK.xcframework-1.1.0.zip",
checksum: "4f0d9a2d0e238bcde47ee04e3bdb38a59f74490636487e2deb8de13d95e82517"
),
.binaryTarget(
name: "MoonsenseSDK-static",
url: "https://dl.moonsense.io/basic/sdk/raw/names/MoonsenseSDK-static.xcframework/versions/1.0.0/MoonsenseSDK-static.xcframework-1.0.0.zip",
checksum: "a6ac835c57d9f05d73278974522e39b67904161d3781d54b973a63dd5f8715cc"
url: "https://dl.moonsense.io/basic/sdk/raw/names/MoonsenseSDK-static.xcframework/versions/1.1.0/MoonsenseSDK-static.xcframework-1.1.0.zip",
checksum: "799063b699b4574225edd7773331fab42d57f4b7fbce1684035d23a6c00a380f"
)
]
)
10 changes: 5 additions & 5 deletions README.md
Expand Up @@ -23,7 +23,7 @@ The `MoonsenseSDK-static.xcframework` contains the statically linked variant of

## Version History

The latest release of the SDK is `1.0.0`. Details about the current and past releases can be found [here](https://github.com/moonsense/moonsense-ios-sdk/releases/).
The latest release of the SDK is `1.1.0`. Details about the current and past releases can be found [here](https://github.com/moonsense/moonsense-ios-sdk/releases/).

## Prerequisites

Expand Down Expand Up @@ -57,16 +57,16 @@ Cocoapods distribution is not currently available but will be supported in an up

The `MoonsenseSDK.xcframework.zip`, `MoonsenseSDK-static.xcframework.zip` and `MoonsenseSDK.doccarchive.zip` artifacts can also be manually integrated into your project. You can download the latest versions from the following links:

* [`MoonsenseSDK.xcframework.zip`](https://dl.moonsense.io/basic/sdk/raw/names/MoonsenseSDK.xcframework/versions/1.0.0/MoonsenseSDK.xcframework-1.0.0.zip)
* [`MoonsenseSDK-static.xcframework.zip`](https://dl.moonsense.io/basic/sdk/raw/names/MoonsenseSDK-static.xcframework/versions/1.0.0/MoonsenseSDK-static.xcframework-1.0.0.zip)
* [`MoonsenseSDK.doccarchive.zip`](https://dl.moonsense.io/basic/sdk/raw/names/MoonsenseSDK.doccarchive/versions/1.0.0/MoonsenseSDK.doccarchive-1.0.0.zip)
* [`MoonsenseSDK.xcframework.zip`](https://dl.moonsense.io/basic/sdk/raw/names/MoonsenseSDK.xcframework/versions/1.1.0/MoonsenseSDK.xcframework-1.1.0.zip)
* [`MoonsenseSDK-static.xcframework.zip`](https://dl.moonsense.io/basic/sdk/raw/names/MoonsenseSDK-static.xcframework/versions/1.1.0/MoonsenseSDK-static.xcframework-1.1.0.zip)
* [`MoonsenseSDK.doccarchive.zip`](https://dl.moonsense.io/basic/sdk/raw/names/MoonsenseSDK.doccarchive/versions/1.1.0/MoonsenseSDK.doccarchive-1.1.0.zip)

Once downloaded, unzip the files and drop the expanded files into your project.

*Note:* The downloads require the authorization token as outlined above. For best results download the artifacts using `curl` with the `-n` option. For example:

```
curl -n -o MoonsenseSDK.xcframework.zip https://dl.moonsense.io/basic/sdk/raw/names/MoonsenseSDK.xcframework/versions/1.0.0/MoonsenseSDK.xcframework-1.0.0.zip
curl -n -o MoonsenseSDK.xcframework.zip https://dl.moonsense.io/basic/sdk/raw/names/MoonsenseSDK.xcframework/versions/1.1.0/MoonsenseSDK.xcframework-1.1.0.zip
```

## Usage
Expand Down
30 changes: 15 additions & 15 deletions SampleApp/SampleApp.xcodeproj/project.pbxproj
Expand Up @@ -7,7 +7,6 @@
objects = {

/* Begin PBXBuildFile section */
0CBD74834B4FB8294DA032FB /* MoonsenseSDK in Frameworks */ = {isa = PBXBuildFile; productRef = 7A11416ACA9B47A5A97AB2B6 /* MoonsenseSDK */; };
245DB36F26FA545B003A5B73 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 24E0513126CED02800D243E0 /* ViewController.swift */; };
245DB37026FA545B003A5B73 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 24E0512D26CED02800D243E0 /* AppDelegate.swift */; };
245DB37126FA545B003A5B73 /* SceneDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 24E0512F26CED02800D243E0 /* SceneDelegate.swift */; };
Expand All @@ -20,7 +19,8 @@
24E0513526CED02800D243E0 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 24E0513326CED02800D243E0 /* Main.storyboard */; };
24E0513726CED02A00D243E0 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 24E0513626CED02A00D243E0 /* Assets.xcassets */; };
24E0513A26CED02A00D243E0 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 24E0513826CED02A00D243E0 /* LaunchScreen.storyboard */; };
82CEBD6E814A57B438702658 /* MoonsenseSDK-static in Frameworks */ = {isa = PBXBuildFile; productRef = 42E8C67AA5C903233C979B59 /* MoonsenseSDK-static */; };
2F186C85AC62C2B4262ABF0A /* MoonsenseSDK-static in Frameworks */ = {isa = PBXBuildFile; productRef = D5B4088A210A77BACC9FCA74 /* MoonsenseSDK-static */; };
340F019D7386C608617C6BC2 /* MoonsenseSDK in Frameworks */ = {isa = PBXBuildFile; productRef = 1687ABB6D7F235DF1FA531BD /* MoonsenseSDK */; };
/* End PBXBuildFile section */

/* Begin PBXCopyFilesBuildPhase section */
Expand Down Expand Up @@ -54,15 +54,15 @@
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
82CEBD6E814A57B438702658 /* MoonsenseSDK-static in Frameworks */,
2F186C85AC62C2B4262ABF0A /* MoonsenseSDK-static in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
24E0512726CED02800D243E0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
0CBD74834B4FB8294DA032FB /* MoonsenseSDK in Frameworks */,
340F019D7386C608617C6BC2 /* MoonsenseSDK in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Expand Down Expand Up @@ -118,7 +118,7 @@
);
name = "SampleApp-Static";
packageProductDependencies = (
42E8C67AA5C903233C979B59 /* MoonsenseSDK-static */,
D5B4088A210A77BACC9FCA74 /* MoonsenseSDK-static */,
);
productName = SampleApp;
productReference = 245DB37D26FA545B003A5B73 /* SampleApp-Static.app */;
Expand All @@ -139,7 +139,7 @@
);
name = SampleApp;
packageProductDependencies = (
7A11416ACA9B47A5A97AB2B6 /* MoonsenseSDK */,
1687ABB6D7F235DF1FA531BD /* MoonsenseSDK */,
);
productName = SampleApp;
productReference = 24E0512A26CED02800D243E0 /* SampleApp.app */;
Expand Down Expand Up @@ -171,7 +171,7 @@
);
mainGroup = 24E0512126CED02800D243E0;
packageReferences = (
C3EB40C02779942A62193D08 /* XCRemoteSwiftPackageReference "moonsense-ios-sdk" */,
FB80EB9DAA74AA52A66184C0 /* XCRemoteSwiftPackageReference "moonsense-ios-sdk" */,
);
productRefGroup = 24E0512B26CED02800D243E0 /* Products */;
projectDirPath = "";
Expand Down Expand Up @@ -510,26 +510,26 @@
/* End XCConfigurationList section */

/* Begin XCRemoteSwiftPackageReference section */
C3EB40C02779942A62193D08 /* XCRemoteSwiftPackageReference "moonsense-ios-sdk" */ = {
FB80EB9DAA74AA52A66184C0 /* XCRemoteSwiftPackageReference "moonsense-ios-sdk" */ = {
isa = XCRemoteSwiftPackageReference;
repositoryURL = "https://github.com/moonsense/moonsense-ios-sdk";
requirement = {
kind = upToNextMinorVersion;
minimumVersion = 1.0.0;
minimumVersion = 1.1.0;
};
};
/* End XCRemoteSwiftPackageReference section */

/* Begin XCSwiftPackageProductDependency section */
42E8C67AA5C903233C979B59 /* MoonsenseSDK-static */ = {
1687ABB6D7F235DF1FA531BD /* MoonsenseSDK */ = {
isa = XCSwiftPackageProductDependency;
package = C3EB40C02779942A62193D08 /* XCRemoteSwiftPackageReference "moonsense-ios-sdk" */;
productName = "MoonsenseSDK-static";
package = FB80EB9DAA74AA52A66184C0 /* XCRemoteSwiftPackageReference "moonsense-ios-sdk" */;
productName = MoonsenseSDK;
};
7A11416ACA9B47A5A97AB2B6 /* MoonsenseSDK */ = {
D5B4088A210A77BACC9FCA74 /* MoonsenseSDK-static */ = {
isa = XCSwiftPackageProductDependency;
package = C3EB40C02779942A62193D08 /* XCRemoteSwiftPackageReference "moonsense-ios-sdk" */;
productName = MoonsenseSDK;
package = FB80EB9DAA74AA52A66184C0 /* XCRemoteSwiftPackageReference "moonsense-ios-sdk" */;
productName = "MoonsenseSDK-static";
};
/* End XCSwiftPackageProductDependency section */
};
Expand Down
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "1340"
LastUpgradeVersion = "1400"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
Expand Down
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "1340"
LastUpgradeVersion = "1400"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
Expand Down
8 changes: 4 additions & 4 deletions SampleCoreApp/README.md
Expand Up @@ -12,16 +12,16 @@ The `SampleCoreApp` project demonstrates the use of the Moonsense iOS Core SDK w

At this time, the `MoonsenseCoreSDK.xcframework.zip`, `MoonsenseCoreSDK-static.xcframework.zip` and `MoonsenseCoreSDK.doccarchive.zip` artifacts must be manually integrated into your project. You can download the latest versions from the following links:

* [`MoonsenseCoreSDK.xcframework.zip`](https://dl.moonsense.io/basic/sdk/raw/names/MoonsenseCoreSDK.xcframework/versions/1.0.0/MoonsenseCoreSDK.xcframework-1.0.0.zip)
* [`MoonsenseCoreSDK-static.xcframework.zip`](https://dl.moonsense.io/basic/sdk/raw/names/MoonsenseCoreSDK-static.xcframework/versions/1.0.0/MoonsenseCoreSDK-static.xcframework-1.0.0.zip)
* [`MoonsenseCoreSDK.doccarchive.zip`](https://dl.moonsense.io/basic/sdk/raw/names/MoonsenseCoreSDK.doccarchive/versions/1.0.0/MoonsenseCoreSDK.doccarchive-1.0.0.zip)
* [`MoonsenseCoreSDK.xcframework.zip`](https://dl.moonsense.io/basic/sdk/raw/names/MoonsenseCoreSDK.xcframework/versions/1.1.0/MoonsenseCoreSDK.xcframework-1.1.0.zip)
* [`MoonsenseCoreSDK-static.xcframework.zip`](https://dl.moonsense.io/basic/sdk/raw/names/MoonsenseCoreSDK-static.xcframework/versions/1.1.0/MoonsenseCoreSDK-static.xcframework-1.1.0.zip)
* [`MoonsenseCoreSDK.doccarchive.zip`](https://dl.moonsense.io/basic/sdk/raw/names/MoonsenseCoreSDK.doccarchive/versions/1.1.0/MoonsenseCoreSDK.doccarchive-1.1.0.zip)

Once downloaded, unzip the files and drop the expanded files into your project.

*Note:* The downloads require the authorization token as outlined in the main [`README.md`](../README.md/#configuring-netrc-for-authorizing-downloads). For best results download the artifacts using `curl` with the `-n` option. For example:

```
curl -n -o MoonsenseCoreSDK.xcframework.zip https://dl.moonsense.io/basic/sdk/raw/names/MoonsenseCoreSDK.xcframework/versions/1.0.0/MoonsenseCoreSDK.xcframework-1.0.0.zip
curl -n -o MoonsenseCoreSDK.xcframework.zip https://dl.moonsense.io/basic/sdk/raw/names/MoonsenseCoreSDK.xcframework/versions/1.1.0/MoonsenseCoreSDK.xcframework-1.1.0.zip
```

## Terms Of Service
Expand Down
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "1340"
LastUpgradeVersion = "1400"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
Expand Down
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "1340"
LastUpgradeVersion = "1400"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
Expand Down
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "1340"
LastUpgradeVersion = "1400"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
Expand Down
18 changes: 9 additions & 9 deletions SamplePaymentSDK/SamplePaymentSDK.xcodeproj/project.pbxproj
Expand Up @@ -26,7 +26,7 @@
24AADF8D2739C57200474E5C /* CVVEntryView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 24AADF8B2739C57200474E5C /* CVVEntryView.swift */; };
24AADF8E2739C57200474E5C /* CVVEntryView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 24AADF8C2739C57200474E5C /* CVVEntryView.xib */; };
24AADF9F273DC34200474E5C /* StringExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 24AADF9E273DC34200474E5C /* StringExtensions.swift */; };
6CE4740704E0EDBD39B58AC7 /* MoonsenseSDK-static in Frameworks */ = {isa = PBXBuildFile; productRef = 003477F3311CD00BE6F76F05 /* MoonsenseSDK-static */; };
9348F796E50057874E6061B8 /* MoonsenseSDK-static in Frameworks */ = {isa = PBXBuildFile; productRef = 3D9A677C5F8F3A6D9FAE2F5B /* MoonsenseSDK-static */; };
/* End PBXBuildFile section */

/* Begin PBXFileReference section */
Expand Down Expand Up @@ -59,7 +59,7 @@
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
6CE4740704E0EDBD39B58AC7 /* MoonsenseSDK-static in Frameworks */,
9348F796E50057874E6061B8 /* MoonsenseSDK-static in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Expand Down Expand Up @@ -202,7 +202,7 @@
);
name = SamplePaymentSDK;
packageProductDependencies = (
003477F3311CD00BE6F76F05 /* MoonsenseSDK-static */,
3D9A677C5F8F3A6D9FAE2F5B /* MoonsenseSDK-static */,
);
productName = SamplePaymentSDK;
productReference = 24889C8427171ECE00F70CCF /* SamplePaymentSDK.framework */;
Expand All @@ -215,7 +215,7 @@
isa = PBXProject;
attributes = {
BuildIndependentTargetsInParallel = 1;
LastUpgradeCheck = 1340;
LastUpgradeCheck = 1400;
ORGANIZATIONNAME = "Moonsense, Inc.";
TargetAttributes = {
24889C8327171ECE00F70CCF = {
Expand All @@ -233,7 +233,7 @@
);
mainGroup = 24889C7A27171ECE00F70CCF;
packageReferences = (
22469D1F491936C287F95BF4 /* XCRemoteSwiftPackageReference "moonsense-ios-sdk" */,
F3FE4D12B148718715F9EECF /* XCRemoteSwiftPackageReference "moonsense-ios-sdk" */,
);
productRefGroup = 24889C8527171ECE00F70CCF /* Products */;
projectDirPath = "";
Expand Down Expand Up @@ -490,20 +490,20 @@
/* End XCConfigurationList section */

/* Begin XCRemoteSwiftPackageReference section */
22469D1F491936C287F95BF4 /* XCRemoteSwiftPackageReference "moonsense-ios-sdk" */ = {
F3FE4D12B148718715F9EECF /* XCRemoteSwiftPackageReference "moonsense-ios-sdk" */ = {
isa = XCRemoteSwiftPackageReference;
repositoryURL = "https://github.com/moonsense/moonsense-ios-sdk";
requirement = {
kind = upToNextMinorVersion;
minimumVersion = 1.0.0;
minimumVersion = 1.1.0;
};
};
/* End XCRemoteSwiftPackageReference section */

/* Begin XCSwiftPackageProductDependency section */
003477F3311CD00BE6F76F05 /* MoonsenseSDK-static */ = {
3D9A677C5F8F3A6D9FAE2F5B /* MoonsenseSDK-static */ = {
isa = XCSwiftPackageProductDependency;
package = 22469D1F491936C287F95BF4 /* XCRemoteSwiftPackageReference "moonsense-ios-sdk" */;
package = F3FE4D12B148718715F9EECF /* XCRemoteSwiftPackageReference "moonsense-ios-sdk" */;
productName = "MoonsenseSDK-static";
};
/* End XCSwiftPackageProductDependency section */
Expand Down
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "1340"
LastUpgradeVersion = "1400"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
Expand Down
2 changes: 1 addition & 1 deletion SamplePaymentSDK/SamplePaymentSDK/Payment.swift
Expand Up @@ -67,7 +67,7 @@ public class Payment {
overlayWindow = SDKOverlayWindow(frame: UIScreen.main.bounds)

// Disables all MoonsenseSDK Logging
Moonsense.logLevel = .none
Moonsense.logLevel = .debug

// Configure SDK:
// Capture sensors that produce data on intervals at 50Hz.
Expand Down

0 comments on commit 68a4a53

Please sign in to comment.