Skip to content

Commit 698ab60

Browse files
author
Craig Lane
authored
Resolved deprecated methods from the 0.2.0 release and updating the minimum version to match the Components (#6)
1 parent e7895a8 commit 698ab60

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

getting-started/getting-started.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@
228228
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
229229
GCC_WARN_UNUSED_FUNCTION = YES;
230230
GCC_WARN_UNUSED_VARIABLE = YES;
231-
IPHONEOS_DEPLOYMENT_TARGET = 15.2;
231+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
232232
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
233233
MTL_FAST_MATH = YES;
234234
ONLY_ACTIVE_ARCH = YES;
@@ -283,7 +283,7 @@
283283
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
284284
GCC_WARN_UNUSED_FUNCTION = YES;
285285
GCC_WARN_UNUSED_VARIABLE = YES;
286-
IPHONEOS_DEPLOYMENT_TARGET = 15.2;
286+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
287287
MTL_ENABLE_DEBUG_INFO = NO;
288288
MTL_FAST_MATH = YES;
289289
SDKROOT = iphoneos;

getting-started/getting-started/SceneDelegate.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class SceneDelegate: UIResponder, UIWindowSceneDelegate {
2121
return PubNubConfiguration(
2222
publishKey: PUBNUB_PUBLISH_KEY,
2323
subscribeKey: PUBNUB_SUBSCRIBE_KEY,
24-
uuid: "myFirstUser"
24+
userId: "myFirstUser"
2525
)
2626
}()
2727

@@ -90,7 +90,7 @@ class SceneDelegate: UIResponder, UIWindowSceneDelegate {
9090
)
9191

9292
// Creates a membership between the user and the channel for subscription purposes
93-
let membership = PubNubChatMember(channel: channel, member: user)
93+
let membership = PubNubChatMember(channel: channel, user: user)
9494

9595
// Subscribes to the default channel
9696
chatProvider.pubnubProvider.subscribe(.init(channels: [defaultChannelId], withPresence: true))

telehealth-example/telehealth-example.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,7 @@
461461
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
462462
GCC_WARN_UNUSED_FUNCTION = YES;
463463
GCC_WARN_UNUSED_VARIABLE = YES;
464-
IPHONEOS_DEPLOYMENT_TARGET = 15.5;
464+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
465465
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
466466
MTL_FAST_MATH = YES;
467467
ONLY_ACTIVE_ARCH = YES;
@@ -515,7 +515,7 @@
515515
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
516516
GCC_WARN_UNUSED_FUNCTION = YES;
517517
GCC_WARN_UNUSED_VARIABLE = YES;
518-
IPHONEOS_DEPLOYMENT_TARGET = 15.5;
518+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
519519
MTL_ENABLE_DEBUG_INFO = NO;
520520
MTL_FAST_MATH = YES;
521521
SDKROOT = iphoneos;

0 commit comments

Comments
 (0)