DocumentationBlogSupport
Log inSign up
Log inSign up
BlogSupport

Announcing the Webex Mobile SDK 3.15: Introducing the Messaging Only SDK

March 18, 2025
Adam Weeks
Adam WeeksManager, Webex Developer Evangelism
Announcing the Webex Mobile SDK 3.15: Introducing the Messaging Only SDK

We are excited to announce the release of Webex Mobile SDK version 3.15, featuring our new Messaging Only SDK for both iOS and Android! This innovation is designed to cater to developers and businesses looking to integrate Webex's powerful messaging capabilities into their mobile applications without the additional features of calling and meetings.

Why Choose the Messaging Only SDK?

By focusing solely on messaging, the new SDK variant offers a streamlined solution that not only optimizes performance but also reduces the overall size of the SDK. This is particularly beneficial for industries like banking, where secure and reliable messaging is a priority.

By isolating the messaging component, developers can seamlessly integrate Webex's robust messaging features into their mobile apps. With a smaller SDK size, applications can achieve better performance and reduced resource consumption.

How to Use and Implement the Messaging Only SDK

Integrating the Messaging Only SDK into your mobile applications is straightforward. Below are the steps for both iOS and Android platforms:

iOS Integration

To create the iOS integration:

  1. Add the Messaging Only SDK to your Podfile to include it in your project:

    target 'MyApp' do
    pod 'WebexSDK/Message', '~> 3.15.0'
    end
    
  2. Run the following command in your terminal to install the SDK:

    pod install
    
  3. Import and initialize the SDK in your application code:

    import WebexSDK
    
    // Initialize Webex messaging
    let webex = Webex(authenticationStrategy: yourAuthStrategy)
    
  4. Implement Messaging Features

Utilize the provided APIs to send, receive, and manage messages as per your application's requirements. The SDK documentation includes detailed examples to guide you through these processes.

Android Integration

To create the Android integration:

  1. Download the WebexSDK-Message.aar file and include it in your project's libs directory.

  2. Add the following to your build.gradle file to ensure the SDK is included in your build process:

    allprojects {
        repositories {
            jcenter()
            maven {
                url 'https://devhub.cisco.com/artifactory/webexsdk/'
            }
        }
    }
    dependencies {
        implementation 'com.ciscowebex:webexsdk-message:3.15.0'
    }
    
  3. Import and initialize the SDK in your application code:

    import com.cisco.webex.androidsdk.Webex;
    
    // Initialize Webex messaging
    Webex webex = new Webex(yourAuthStrategy);
    
  4. Utilize the provided APIs to send, receive, and manage messages as per your application's requirements. The SDK documentation includes detailed examples to guide you through these processes.


Conclusion

The release of the Messaging Only SDK in version 3.15 marks a significant step forward in our commitment to providing versatile and efficient communication solutions. By focusing on the essential messaging features, we can offer a product that meets the specific needs of our customers, facilitating enhanced communication and collaboration.

Stay tuned for more updates and enhancements as we continue to innovate and expand our offerings to meet the diverse needs of our users.

We look forward to seeing how you leverage the new Messaging Only SDK in your projects. For any questions or support, feel free to reach out to our developer community or contact us directly. Happy coding!

Blog Categories
  • Product Announcements
  • How To
  • Events
  • Developer Stories
Share This Article
Related Articles
Announcing the Launch of Webex Web Meetings SDK V3
Product Announcements
Announcing the Launch of Webex Web Meetings SDK V3
Kesava Krishnan Madavan
April 19, 2024
Introducing the Webex Web Calling SDK
Product Announcements
Introducing the Webex Web Calling SDK
Sreekanth Narayanan
January 25, 2024

Connect

Support

Developer Community

Developer Events

Contact Sales

Handy Links

Webex Ambassadors

Webex App Hub

Resources

Open Source Bot Starter Kits

Download Webex

DevNet Learning Labs

Terms of Service

Privacy Policy

Cookie Policy

Trademarks

© 2025 Cisco and/or its affiliates. All rights reserved.