iOS UIKit V3.0 Migration Guide
UIKit v3.0.0 is the major release of our UIKit with Social Plus SDK v6.5.0.
The guide will cover all the breaking changes and migration to this version.
Installation:
Manual Installation:
UIKit v3.0.0 will require RealmSwift.xcframework
along with the existing frameworks.

Behavior Changes:
AmityUIKItManager:
setup(apiKey:, httpUrl:, socketUrl:)
Removed
use setup(apiKey:, endpoint:)
instead
registerDevice(userId:, displayName:, authToken:, completion:)
Removed
Use registerDevice(userId:, displayName:, authToken:, sessionHandler:, completion:)
instead.
AmityChannelEventHandler:
channelDidTap(from:, channelId:)
Removed
Override channelDidTap(from:, channelId:, subChannelId:)
instead.
AmityEventHandler:
communityChannelDidTap(from:, channelId:)
Removed
Override communityChannelDidTap(from:, channelId:, subChannelId:)
instead.
AmityMessageListViewController:
make(channelId:, settings:)
Removed
Use make(channelId:, subChannelId:, settings:)
instead.
AmityCommunityProfilePageViewController:
make(withCommunityId:, settings:)
Removed
Use make(withCommunityId:)
instead.
Last updated
Was this helpful?