Skip to content

Commit

Permalink
Release v9.0.0
Browse files Browse the repository at this point in the history
Release v9.0.0
  • Loading branch information
yeskay-zohocorp committed May 7, 2024
1 parent a557eab commit fb18c67
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 9 deletions.
4 changes: 2 additions & 2 deletions Mobilisten.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = "Mobilisten"
spec.version = "8.1.3"
spec.version = "9.0.0"
spec.summary = "Mobilisten iOS SDK"
spec.license = { :type => "MIT", :text=> <<-LICENSE
MIT License
Expand Down Expand Up @@ -29,7 +29,7 @@ spec.source = { :http => "https://raw.githubusercontent.com/zoho/SalesIQ-Mobilis
spec.source_files = 'Mobilisten.xcframework/*/Mobilisten.framework/Headers/*.{h,m,swift}'
spec.ios.vendored_frameworks = 'Mobilisten.xcframework'
spec.social_media_url = "http://zoho.com"
spec.ios.deployment_target = '11.0'
spec.ios.deployment_target = '12.0'
spec.requires_arc = true
spec.readme = "https://raw.githubusercontent.com/zoho/SalesIQ-Mobilisten-iOS/v#{spec.version}/README.md"
end
Binary file modified Mobilisten.zip
Binary file not shown.
16 changes: 10 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[![Platform](https://img.shields.io/badge/platforms-iOS-orange.svg)](https://cocoapods.org/pods/Mobilisten)
[![SupportedLanguages](https://img.shields.io/badge/languages-Swift%20%7C%20%20ObjectiveC-green.svg)](https://www.zoho.com/salesiq/help/developer-section/ios-mobile-sdk-installation.html)
[![Version](https://img.shields.io/badge/version-8.1.3-blue.svg)](https://cocoapods.org/pods/Mobilisten)
[![Version](https://img.shields.io/badge/version-9.0.0-blue.svg)](https://cocoapods.org/pods/Mobilisten)
[![Cocoapods CDI](https://github.com/zoho/SalesIQ-Mobilisten-iOS/workflows/Cocoapods%20CD/badge.svg)](https://github.com/zoho/SalesIQ-Mobilisten-iOS/actions?query=workflow%3A%22Cocoapods+CD%22)

# SalesIQ Mobilisten iOS SDK 8.1.3
# SalesIQ Mobilisten iOS SDK 9.0.0

Connect with customers at every step of their journey. Give them the best in-app live chat experience with Mobilisten. Mobilisten enables customers to reach you from any screen on your app, get their questions answered, and make better purchase decisions.

Expand All @@ -15,11 +15,11 @@ Here is an example Podfile where Mobilisten is included.

```ruby
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '11.0'
platform :ios, '12.0'

target 'Project Target' do
use_frameworks!
pod 'Mobilisten', '8.1.3'
pod 'Mobilisten', '9.0.0'
end
```

Expand All @@ -41,8 +41,12 @@ Mobilisten comes with a set of highly configurable APIs to suit your needs. Regi
## Initializing Mobilisten
Use the `ZohoSalesIQ.initWithAppKey(:accessKey:completion:)` API to initialize Mobilisten.
```swift
ZohoSalesIQ.initWithAppKey("app_key", accessKey: "access_key") { _ in
// your code goes here
ZohoSalesIQ.initWithAppKey("app_key", accessKey: "access_key") { error in
if error == nil {
// Initialization successful
} else {
// Initialization failed, handle error
}
}
```

Expand Down
2 changes: 1 addition & 1 deletion compatibility_matrix.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[
{
"Xcode Version": "13 and Above",
"Mobilisten Version": "8.1.3"
"Mobilisten Version": "9.0.0"
}
]

0 comments on commit fb18c67

Please sign in to comment.