Skip to content

Commit

Permalink
Example projects updated to use release 5.0.2
Browse files Browse the repository at this point in the history
iosBleSdkTestApp can be built with Xcode 14.3
  • Loading branch information
Samuli Määttä committed Mar 30, 2023
1 parent 22c67de commit 45f92e1
Show file tree
Hide file tree
Showing 20 changed files with 33 additions and 27 deletions.
2 changes: 1 addition & 1 deletion demos/Android-Demos/PolarSDK-ECG-HR-Demo/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ android {
}

dependencies {
implementation 'com.github.polarofficial:polar-ble-sdk:5.0.1'
implementation 'com.github.polarofficial:polar-ble-sdk:5.0.2'
implementation 'com.androidplot:androidplot-core:1.5.10'
implementation 'io.reactivex.rxjava3:rxjava:3.1.6'
implementation 'io.reactivex.rxjava3:rxandroid:3.0.2'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ android {
}

dependencies {
implementation 'com.github.polarofficial:polar-ble-sdk:5.0.1'
implementation 'com.github.polarofficial:polar-ble-sdk:5.0.2'
implementation 'io.reactivex.rxjava3:rxjava:3.1.6'
implementation 'io.reactivex.rxjava3:rxandroid:3.0.2'
implementation 'androidx.appcompat:appcompat:1.6.1'
Expand Down
2 changes: 1 addition & 1 deletion examples/example-ios/iosBleSdkTestApp/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ platform :ios, '15.0'
use_frameworks!

target 'iosBleSdkTestApp' do
pod 'PolarBleSdk', '5.0.1'
pod 'PolarBleSdk', '5.0.2'
end
10 changes: 5 additions & 5 deletions examples/example-ios/iosBleSdkTestApp/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
PODS:
- PolarBleSdk (5.0.1):
- PolarBleSdk (5.0.2):
- RxSwift (~> 6.5.0)
- SwiftProtobuf (~> 1.0)
- RxSwift (6.5.0)
- SwiftProtobuf (1.21.0)

DEPENDENCIES:
- PolarBleSdk (= 5.0.1)
- PolarBleSdk (= 5.0.2)

SPEC REPOS:
https://github.com/CocoaPods/Specs.git:
Expand All @@ -15,10 +15,10 @@ SPEC REPOS:
- SwiftProtobuf

SPEC CHECKSUMS:
PolarBleSdk: 560c457a9d8293a25d397046e1510d8b4b7d90ce
PolarBleSdk: 5d1d9792a1fee9d5b4f26f7c54a7eb57988d5d3e
RxSwift: 5710a9e6b17f3c3d6e40d6e559b9fa1e813b2ef8
SwiftProtobuf: afced68785854575756db965e9da52bbf3dc45e7

PODFILE CHECKSUM: e0754e2bc135316564248b49311722c1a2db0a71
PODFILE CHECKSUM: 03f19b71504ae65c395fd213b6e571e4cb68c2d1

COCOAPODS: 1.11.3
COCOAPODS: 1.12.0
10 changes: 5 additions & 5 deletions examples/example-ios/iosBleSdkTestApp/Pods/Manifest.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,8 @@ struct OfflineRecordingStartView: View {
OfflineRecStartButton(dataType: .hr)
}
}.fullScreenCover(item: $bleSdkManager.offlineRecordingSettings) { offlineRecSettings in
if let settings = offlineRecSettings {
SettingsView(streamedFeature: settings.feature, streamSettings: settings, isOfflineSettings: true)
}
let settings = offlineRecSettings
SettingsView(streamedFeature: settings.feature, streamSettings: settings, isOfflineSettings: true)
}
}.task {
await bleSdkManager.getOfflineRecordingStatus()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,8 @@ struct OnlineStreamsView: View {
}
}
.fullScreenCover(item: $bleSdkManager.onlineStreamSettings) { streamSettings in
if let settings = streamSettings {
SettingsView(streamedFeature: settings.feature, streamSettings: settings)
}
let settings = streamSettings
SettingsView(streamedFeature: settings.feature, streamSettings: settings)
}
.sheet(
item: Binding(
Expand Down

0 comments on commit 45f92e1

Please sign in to comment.