Seamless BLE-to-Live Activity Sync in React Native — No Push Needed

Bookmark
Rate this content

Learn how to connect Bluetooth Low Energy (BLE) devices directly to iOS Live Activities in React Native—without using push notifications. I’ll show how I built a custom module that enables real-time updates from a BLE device to the lock screen and Dynamic Island, using Swift and React Native. Perfect for developers working with IoT, wearables, or real-time apps.

This talk has been presented at React Summit US 2025, check out the latest edition of this React Conference.

FAQ

The main topic of Rajnikadia's talk is about integrating Bluetooth Low Energy (BLE) with iOS Live Activity in React Native applications.

The purpose of the Hinge Health app demo is to show how the app interacts with the Enso Bluetooth device, allowing users to visualize treatment data and receive critical updates on their lock screen or dynamic island without opening the app.

iOS Live Activity allows users to view real-time information on their lock screen, dynamic island, or Apple Watch without needing to open the app.

BLE allows seamless communication between devices, enabling real-time updates and interactions without draining resources, even when the app is in the background.

The architecture includes a React Native app with a TypeScript service for gathering BLE data, a native module for bridging JavaScript and native calls, and the ActivityKit for managing iOS Live Activities.

The UI background mode setting is important because it allows the iOS app to wake up and process BLE communication even when the app is in the background, facilitating real-time updates.

Challenges include limitations on access to Bluetooth and other services within Live Activities, restricted operation times, and difficulties in closing Live Activities when the app is terminated.

Rajnikadia suggests starting development with a simulator, checking user permissions, using date text styles for timers, and implementing deep linking for enhanced user experience.

React Native allows the development of cross-platform mobile applications, providing the flexibility to write custom modules that integrate seamlessly with native features like iOS Live Activities.

Rajni Gediya
Rajni Gediya
25 min
21 Nov, 2025

Comments

Sign in or register to post your comment.
Video Summary and Transcription
Introduction to React Summit 2025 focusing on seamless Bluetooth Low Energy integration with iOS Live Activity. Understanding custom modules in React Native and Bluetooth Low Energy basics. Challenges with iOS Live Activity updates on Bluetooth devices without push notifications. Exploring UI background mode in iOS for Bluetooth communication wake-up. Utilizing React Native Bluetooth manager for seamless integration with iOS native modules. Demonstrating Bluetooth communication between peripheral and central devices using iOS Core Bluetooth. Exploring challenges and best practices for live activity development in iOS.

1. Exploring Bluetooth Integration in React Native

Short description:

Introduction to React Summit 2025 focusing on seamless Bluetooth Low Energy integration with iOS Live Activity. Demo showcasing real-time interaction between app and device. Speaker's background, agenda overview, and definition of React Native.

Hi everyone, welcome to React Summit 2025. Hope you're having a good time here. I'm thrilled to be here and thank you for joining my talk. My talk is about seamless Bluetooth Low Energy to iOS Live Activity integration, like seeing data between those two in React Native. But before we get started, I want to show a nice demo for that, so let me switch to the demo.

Okay, so this is our Hinge Health app and we have this Enso device, this advanced device, and that helps us to relieve the chronic pain. And our app helps us to interact with this Bluetooth device and we are using live activity so that user can visualize the treatment data right from their lock screen or dynamic island, and also get critical updates from that particular device if something happens, like if device is detached or battery is low, we directly send that information to the live activity so the user can visualize it and act on it without even opening the app. So let's get started. So here, the treatment is, we are just starting a treatment and here we are increasing the intensity. And here, the live activity is already started. As you can see in the dynamic island, there is a hinge health icon. And now, I will demo how the second live activity, which is a countdown timer, that I deliberately added so that we can see both activities at the same time. And now, I detached the device, so here the live activity says, okay, device is detached. And when detached, it automatically resumes the intensity and everything is visible to the user, even without opening the app. And also, when we tap on the live activity, it deep links to your particular screen or app. So this is a small demo, and now let's cut back to our slide.

Okay, so about me. I'm Rajnikadia, Staff Software Engineer at Hinge Health, and I build cross-platform apps for Bluetooth Low Energy devices, ensuring secure and a smooth communication between hardware and the app. And here are my social links, like my personal site and GitHub and LinkedIn. I'm happy to connect, so let's get started. Okay, so today's agenda is, first, we'll understand the technical stack, like React Native, what is React Native, what is live activity, and what is Bluetooth Low Energy. Then we explore the problem and the challenge, how we can do, how we can support iOS live activity in offline mode. And the magic, like what particular setting we need to use to enable this thing. And then we will see our architecture, like a bridge architecture and the code walkthrough. And then we will have a small slide on how we can design a live activity UI. And then we will explore challenges and best practices to work with iOS live activities. And then, yeah, closing part. So also just a note that throughout this talk, when I said BLE, it's like Bluetooth Low Energy, and when I say live activities, iOS live activity. Okay, so what is React Native? So React Native is a framework from Meta that helps us to build cross-platform applications, mobile applications, for iOS and Android, and even for like other OS, like Windows or Mac. It's used by Discord, Shopify, Tesla, Bloomberg, and many more.

2. Understanding Custom Modules and Bluetooth LE

Short description:

Introduction to custom modules in React Native, iOS live activities providing real-time information, and Bluetooth Low Energy basics.

And React Native gives us the power to write our own custom modules so that, for example, if something is not supported by your library, React Native library, you can write your own module for that. So, for example, if iOS activity module is not there, you can write a native code and then bridge it to the TypeScript world so that React Native developers can use that. And for that, either we can use legacy modules, which is supported by old React Native architecture, or turbo module, which is supported by new React Native architecture, or awesome tool like Expo, which takes care of everything and just give a seamless integration for creating these native modules.

So now, what are iOS live activities? So they're a glanceable view, and they provide real-time information right on your lock screen or dynamic island, or even on a standby screen, and also on Apple Watch. In recent, like, 2025, even, they announced that they're also providing the same iOS live activity UI to macOS on CarPlay, which is exciting. Some examples, like Uber app shows the driver ETA, and Doodash app shows like a build data, like a tracking of each individual step, and FlightDash shows a flight status. So normally, the live activity updates are done through the remote server via push notification. So, for example, when we start a delivery app and the order is placed, the backend server will directly talk to live activity and then say, okay, the order is created. And then, each step, like a driver location or delivery person location and delivery status is updated real time through push notification. So here, the remote server is needed, but we are exploring the other way, the magical way. Live activity will live in their own little world.

So Bluetooth Low Energy. So Bluetooth Low Energy is a lighter, smarter, and power-efficient version of Bluetooth Classic. So Bluetooth Classic is for long range, like a headphone or any other, like, audio streaming devices. They're used in various industries, like from healthcare to wellness to agriculture, really powers it all, and it's supported everywhere, like iOS, Android, Windows, or even, like, wearable devices. To understand a basic concept, it's like, one, in Bluetooth Low Energy communication, one device acts as a peripheral and one acts as a server. So you can consider, so for example, when you have your smartwatch connected to your Apple app, like iOS app, iOS app works as a central and this watch acts as a peripheral. So peripheral job is to serve something. So when the central asks for something, like, get me the battery percentage, get me the health data or something, heart rate data, then the peripheral will deliver that. So peripheral is a kind of a server and a central, sorry, a central is kind of a client, if you are competing with a client-server model. And this exchanges data through characteristics.

Check out more articles and videos

We constantly think of articles and videos that might spark Git people interest / skill us up or help building a stellar career

Raising the Bar: Our Journey Making React Native a Preferred Choice
React Advanced 2023React Advanced 2023
29 min
Raising the Bar: Our Journey Making React Native a Preferred Choice
Watch video: Raising the Bar: Our Journey Making React Native a Preferred Choice
This Talk discusses Rack Native at Microsoft and the efforts to improve code integration, developer experience, and leadership goals. The goal is to extend Rack Native to any app, utilize web code, and increase developer velocity. Implementing web APIs for React Native is being explored, as well as collaboration with Meta. The ultimate aim is to make web code into universal code and enable developers to write code once and have it work on all platforms.
Opensource Documentation—Tales from React and React Native
React Finland 2021React Finland 2021
27 min
Opensource Documentation—Tales from React and React Native
Documentation is often your community's first point of contact with your project and their daily companion at work. So why is documentation the last thing that gets done, and how can we do it better? This talk shares how important documentation is for React and React Native and how you can invest in or contribute to making your favourite project's docs to build a thriving community
Bringing React Server Components to React Native
React Day Berlin 2023React Day Berlin 2023
29 min
Bringing React Server Components to React Native
Top Content
Watch video: Bringing React Server Components to React Native
React Server Components (RSC) offer a more accessible approach within the React model, addressing challenges like big initial bundle size and unnecessary data over the network. RSC can benefit React Native development by adding a new server layer and enabling faster requests. They also allow for faster publishing of changes in mobile apps and can be integrated into federated super apps. However, implementing RSC in mobile apps requires careful consideration of offline-first apps, caching, and Apple's review process.
React Native Kotlin Multiplatform Toolkit
React Day Berlin 2022React Day Berlin 2022
26 min
React Native Kotlin Multiplatform Toolkit
Top Content
The Talk discusses the combination of React Native and Kotlin Multiplatform for cross-platform app development. Challenges with native modules in React Native are addressed, and the potential improvements of using Kotlin Multiplatform Mobile are explored. The integration of Kotlin Multiplatform with React Native streamlines native implementation and eliminates boilerplate code. Questions about architecture and compatibility, as well as the possibility of supporting React Native Web, are discussed. The React Native toolkit works with native animations and has potential for open-source development.
“Microfrontends” for Mobile in React Native
React Advanced 2023React Advanced 2023
24 min
“Microfrontends” for Mobile in React Native
Top Content
Watch video: “Microfrontends” for Mobile in React Native
Micro frontends are an architectural style where independent deliverable frontend applications compose a greater application. They allow for independent development and deployment, breaking down teams into feature verticals. React Native's architecture enables updating the JavaScript layer without going through the app store. Code Push can be used to deploy separate JavaScript bundles for each micro frontend. However, there are challenges with managing native code and dependencies in a micro frontend ecosystem for mobile apps.
Building Cross-Platform Component Libraries for Web and Native with React
React Advanced 2021React Advanced 2021
21 min
Building Cross-Platform Component Libraries for Web and Native with React
Top Content
This Talk discusses building cross-platform component libraries for React and React Native, based on a successful project with a large government-owned news organization. It covers the requirements for React Native knowledge, building cross-platform components, platform-specific components, styling, and the tools used. The Talk also highlights the challenges of implementing responsive design in React Native.

Workshops on related topic

Introducing FlashList: Let's build a performant React Native list all together
React Advanced 2022React Advanced 2022
81 min
Introducing FlashList: Let's build a performant React Native list all together
Top Content
Featured Workshop
David Cortés Fulla
Marek Fořt
Talha Naqvi
3 authors
In this workshop you’ll learn why we created FlashList at Shopify and how you can use it in your code today. We will show you how to take a list that is not performant in FlatList and make it performant using FlashList with minimum effort. We will use tools like Flipper, our own benchmarking code, and teach you how the FlashList API can cover more complex use cases and still keep a top-notch performance.You will know:- Quick presentation about what FlashList, why we built, etc.- Migrating from FlatList to FlashList- Teaching how to write a performant list- Utilizing the tools provided by FlashList library (mainly the useBenchmark hook)- Using the Flipper plugins (flame graph, our lists profiler, UI & JS FPS profiler, etc.)- Optimizing performance of FlashList by using more advanced props like `getType`- 5-6 sample tasks where we’ll uncover and fix issues together- Q&A with Shopify team
Detox 101: How to write stable end-to-end tests for your React Native application
React Summit 2022React Summit 2022
117 min
Detox 101: How to write stable end-to-end tests for your React Native application
Top Content
Workshop
Yevheniia Hlovatska
Yevheniia Hlovatska
Compared to unit testing, end-to-end testing aims to interact with your application just like a real user. And as we all know it can be pretty challenging. Especially when we talk about Mobile applications.
Tests rely on many conditions and are considered to be slow and flaky. On the other hand - end-to-end tests can give the greatest confidence that your app is working. And if done right - can become an amazing tool for boosting developer velocity.
Detox is a gray-box end-to-end testing framework for mobile apps. Developed by Wix to solve the problem of slowness and flakiness and used by React Native itself as its E2E testing tool.
Join me on this workshop to learn how to make your mobile end-to-end tests with Detox rock.
Prerequisites- iOS/Android: MacOS Catalina or newer- Android only: Linux- Install before the workshop
How to Build an Interactive “Wheel of Fortune” Animation with React Native
React Summit Remote Edition 2021React Summit Remote Edition 2021
60 min
How to Build an Interactive “Wheel of Fortune” Animation with React Native
Top Content
Workshop
Oli Bates
Oli Bates
- Intro - Cleo & our mission- What we want to build, how it fits into our product & purpose, run through designs- Getting started with environment set up & “hello world”- Intro to React Native Animation- Step 1: Spinning the wheel on a button press- Step 2: Dragging the wheel to give it velocity- Step 3: Adding friction to the wheel to slow it down- Step 4 (stretch): Adding haptics for an immersive feel
Deploying React Native Apps in the Cloud
React Summit 2023React Summit 2023
88 min
Deploying React Native Apps in the Cloud
Top Content
WorkshopFree
Cecelia Martinez
Cecelia Martinez
Deploying React Native apps manually on a local machine can be complex. The differences between Android and iOS require developers to use specific tools and processes for each platform, including hardware requirements for iOS. Manual deployments also make it difficult to manage signing credentials, environment configurations, track releases, and to collaborate as a team.
Appflow is the cloud mobile DevOps platform built by Ionic. Using a service like Appflow to build React Native apps not only provides access to powerful computing resources, it can simplify the deployment process by providing a centralized environment for managing and distributing your app to multiple platforms. This can save time and resources, enable collaboration, as well as improve the overall reliability and scalability of an app.
In this workshop, you’ll deploy a React Native application for delivery to Android and iOS test devices using Appflow. You’ll also learn the steps for publishing to Google Play and Apple App Stores. No previous experience with deploying native applications is required, and you’ll come away with a deeper understanding of the mobile deployment process and best practices for how to use a cloud mobile DevOps platform to ship quickly at scale.
Effective Detox Testing
React Advanced 2023React Advanced 2023
159 min
Effective Detox Testing
Workshop
Josh Justice
Josh Justice
So you’ve gotten Detox set up to test your React Native application. Good work! But you aren’t done yet: there are still a lot of questions you need to answer. How many tests do you write? When and where do you run them? How do you ensure there is test data available? What do you do about parts of your app that use mobile APIs that are difficult to automate? You could sink a lot of effort into these things—is the payoff worth it?
In this three-hour workshop we’ll address these questions by discussing how to integrate Detox into your development workflow. You’ll walk away with the skills and information you need to make Detox testing a natural and productive part of day-to-day development.
Table of contents:
- Deciding what to test with Detox vs React Native Testing Library vs manual testing- Setting up a fake API layer for testing- Getting Detox running on CI on GitHub Actions for free- Deciding how much of your app to test with Detox: a sliding scale- Fitting Detox into you local development workflow
Prerequisites
- Familiarity with building applications with React Native- Basic experience with Detox- Machine setup: a working React Native CLI development environment including either Xcode or Android Studio
Building for Web & Mobile with Expo
React Day Berlin 2022React Day Berlin 2022
155 min
Building for Web & Mobile with Expo
Workshop
Josh Justice
Josh Justice
We know that React is for the web and React Native is for Android and iOS. But have you heard of react-native-web—for writing an app for Android, iOS, and the web in one codebase? Just like React Native abstracts away the details of iOS and Android, React Native Web extracts away the details of the browser as well. This opens up the possibility of even more code sharing across platforms.
In this workshop you’ll walk through setting up the skeleton for a React Native Web app that works great and looks awesome. You can use the resulting codebase as a foundation to build whatever app you like on top of it, using the React paradigms and many JavaScript libraries you’re used to. You might be surprised how many types of app don’t really require a separate mobile and web codebase!
What's included1. Setting up drawer and stack navigators with React Navigation, including responsiveness2. Configuring React Navigation with URLs3. Setting up React Native Paper including styling the React Navigation drawer and headers4. Setting up a custom color theme that supports dark mode5. Configuring favicons/app icons and metadata6. What to do when you can’t or don’t want to provide the same functionality on web and mobile
Prerequisites- Familiarity with building applications with either React or React Native. You do not need to know both.- Machine setup: Node LTS, Yarn, be able to successfully create and run a new Expo app following the instructions on https://docs.expo.dev/get-started/create-a-new-app/