Skip to content

Commit b6f44ec

Browse files
committed
New STBlueSTSDK v1.0.0
1 parent 3f5c770 commit b6f44ec

31 files changed

Lines changed: 42 additions & 16 deletions

Demo/blueSTDemo.xcodeproj/project.pbxproj

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
6010C4CF27FC36C700761DDE /* BlueVoiceViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BlueVoiceViewController.swift; sourceTree = "<group>"; };
4040
6010C4D227FC376000761DDE /* AudioPlotDataSource.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AudioPlotDataSource.swift; sourceTree = "<group>"; };
4141
6010C4D427FC379600761DDE /* AudioCircularBuffer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AudioCircularBuffer.swift; sourceTree = "<group>"; };
42+
603BD28C2A56F2FA00D447F2 /* iOS_Module_BlueSTSDK_Pub */ = {isa = PBXFileReference; lastKnownFileType = wrapper; name = iOS_Module_BlueSTSDK_Pub; path = ..; sourceTree = "<group>"; };
4243
6076519327EB669100E0D55E /* FilePicker.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FilePicker.swift; sourceTree = "<group>"; };
4344
6076519527EDE43400E0D55E /* FirmwareSelectViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FirmwareSelectViewController.swift; sourceTree = "<group>"; };
4445
6076519827EDE8C500E0D55E /* STM32FirmwareTypeView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = STM32FirmwareTypeView.swift; sourceTree = "<group>"; };
@@ -51,12 +52,10 @@
5152
60781B8A27AAC33F0042B0AF /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
5253
60781B8C27AAC33F0042B0AF /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
5354
607AD9E127EDED8100BD9426 /* STM32FirmwareTypeView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = STM32FirmwareTypeView.xib; sourceTree = "<group>"; };
54-
6098641E29A4D5EB00DB9249 /* iOS_Module_BlueSTSDK */ = {isa = PBXFileReference; lastKnownFileType = wrapper; name = iOS_Module_BlueSTSDK; path = ..; sourceTree = "<group>"; };
5555
60B084A527D0F29000450B43 /* NodeDetailViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NodeDetailViewController.swift; sourceTree = "<group>"; };
5656
60DDEDB227AAC46E00CD0DB9 /* NodeCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NodeCell.swift; sourceTree = "<group>"; };
5757
60E3E65527C930D200442A9F /* DebugConsoleViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DebugConsoleViewController.swift; sourceTree = "<group>"; };
5858
60E3E65927C9312A00442A9F /* DebugConsoleViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = DebugConsoleViewController.xib; sourceTree = "<group>"; };
59-
60EC140329B5ECF900DB2E01 /* iOS_Module_STCore */ = {isa = PBXFileReference; lastKnownFileType = wrapper; name = iOS_Module_STCore; path = ../../iOS_Module_STCore; sourceTree = "<group>"; };
6059
60FDEA1B27B3F58C00088C95 /* BaseNodeViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BaseNodeViewController.swift; sourceTree = "<group>"; };
6160
60FDEA1D27B3F5D700088C95 /* FeatureCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FeatureCell.swift; sourceTree = "<group>"; };
6261
60FDEA2127B3F93F00088C95 /* FeatureLogViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FeatureLogViewController.swift; sourceTree = "<group>"; };
@@ -135,8 +134,7 @@
135134
60DDEDB527AAC59000CD0DB9 /* Packages */ = {
136135
isa = PBXGroup;
137136
children = (
138-
60EC140329B5ECF900DB2E01 /* iOS_Module_STCore */,
139-
6098641E29A4D5EB00DB9249 /* iOS_Module_BlueSTSDK */,
137+
603BD28C2A56F2FA00D447F2 /* iOS_Module_BlueSTSDK_Pub */,
140138
);
141139
name = Packages;
142140
sourceTree = "<group>";

Demo/blueSTDemo.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.resolved

Lines changed: 23 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,25 @@ let package = Package(
1010
.macOS(.v11)
1111
],
1212
products: [
13+
// Products define the executables and libraries a package produces, and make them visible to other packages.
1314
.library(
1415
name: "STBlueSDK",
1516
targets: ["STBlueSDK"]),
1617
],
1718
dependencies: [
18-
.package(url: "./Packages/iOS_Module_STCore", from: "0.0.0"),
19+
// Dependencies declare other packages that this package depends on.
20+
// // .package(url: /* package url */, from: "1.0.0")
21+
.package(path: "./Packages/STCore"),
1922
.package(url: "https://github.com/ybrid/opus-swift.git", from: "0.8.0")
2023
],
2124
targets: [
25+
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
26+
// Targets can depend on other targets in this package, and on products in packages this package depends on.
2227
.target(
2328
name: "STBlueSDK",
2429
dependencies: [
2530
.product(name: "YbridOpus", package: "opus-swift"),
26-
.product(name: "STCore", package: "iOS_Module_STCore")
31+
.product(name: "STCore", package: "STCore")
2732
]),
2833
.testTarget(
2934
name: "STBlueSDKTests",
File renamed without changes.

Packages/iOS_Module_STCore/Sources/STCore/Analytics/AnalyticsService.swift renamed to Packages/STCore/Sources/STCore/Analytics/AnalyticsService.swift

File renamed without changes.

Packages/iOS_Module_STCore/Sources/STCore/Extensions/Bool+Helper.swift renamed to Packages/STCore/Sources/STCore/Extensions/Bool+Helper.swift

File renamed without changes.

Packages/iOS_Module_STCore/Sources/STCore/Extensions/DateFormatter+Helper.swift renamed to Packages/STCore/Sources/STCore/Extensions/DateFormatter+Helper.swift

File renamed without changes.

Packages/iOS_Module_STCore/Sources/STCore/Extensions/FileManager+Helper.swift renamed to Packages/STCore/Sources/STCore/Extensions/FileManager+Helper.swift

File renamed without changes.

0 commit comments

Comments
 (0)