Skip to content

Commit

Permalink
Merge pull request #87 from Kommunicate-io/release/1.2.0
Browse files Browse the repository at this point in the history
Release/1.2.0
  • Loading branch information
AbhijeetRanjan308 committed Apr 23, 2024
2 parents 3fbddc7 + ea92f10 commit 1f49f42
Show file tree
Hide file tree
Showing 9 changed files with 579 additions and 254 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# CHANGELOG

The changelog for [KommunicateCore-iOS-SDK](https://github.com/Kommunicate-io/KommunicateCore-iOS-SDK). Also see the [releases](https://github.com/Kommunicate-io/KommunicateCore-iOS-SDK/releases) on Github.

## [1.2.0] 2024-04-23
- Added Support for EU region.
## [1.1.9] 2024-04-10
- Added support for conversation deletion sync.
## [1.1.8] 2024-02-12
Expand Down
4 changes: 2 additions & 2 deletions Example/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PODS:
- KommunicateCore-iOS-SDK (1.1.9)
- KommunicateCore-iOS-SDK (1.2.0)

DEPENDENCIES:
- KommunicateCore-iOS-SDK (from `../`)
Expand All @@ -9,7 +9,7 @@ EXTERNAL SOURCES:
:path: "../"

SPEC CHECKSUMS:
KommunicateCore-iOS-SDK: d8c46aea82b1090effb568f2aaf1938f31f8e0b5
KommunicateCore-iOS-SDK: 5ba7ae15243532039792f3e166d3750a07cf8700

PODFILE CHECKSUM: 7027d57d0977da2f7eeddd9ce9eb5c4b46250a39

Expand Down

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

4 changes: 2 additions & 2 deletions Example/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.

2 changes: 1 addition & 1 deletion KommunicateCore-iOS-SDK.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'KommunicateCore-iOS-SDK'
s.version = '1.1.9'
s.version = '1.2.0'
s.summary = 'KommunicateCore-iOS SDK pod'
s.description = <<-DESC
The KommunicateCore-iOS SDK helps you build your own custom UI in your iOS app
Expand Down
4 changes: 4 additions & 0 deletions Sources/include/ALUserDefaultsHandler.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ static NSString *const AL_APP_MODULE_NAME_ID = @"com.applozic.userdefault.APP_MO
static NSString *const AL_CONTACT_VIEW_LOADED = @"com.applozic.userdefault.CONTACT_VIEW_LOADED";
static NSString *const AL_USER_INFO_API_CALLED_SUFFIX = @"com.applozic.userdefault.USER_INFO_API_CALLED:";
static NSString *const APPLOZIC_BASE_URL = @"APPLOZIC_BASE_URL";
static NSString *const CHAT_BASE_URL = @"CHAT_BASE_URL";
static NSString *const APPLOZIC_MQTT_URL = @"APPLOZIC_MQTT_URL";
static NSString *const APPLOZIC_FILE_URL = @"APPLOZIC_FILE_URL";
static NSString *const APPLOZIC_MQTT_PORT = @"APPLOZIC_MQTT_PORT";
Expand Down Expand Up @@ -179,6 +180,9 @@ static NSString *const AL_VOIP_DEVICE_TOKEN = @"com.applozic.userdefault.VOIP_DE
+ (void)setBASEURL:(NSString *)baseURL;
+ (NSString *)getBASEURL;

+ (void)setChatBaseURL: (NSString *)chatBaseURL;
+ (NSString *)getChatBaseURL;

+ (void)setMQTTURL:(NSString *)mqttURL;
+ (NSString *)getMQTTURL;

Expand Down

0 comments on commit 1f49f42

Please sign in to comment.