Create the iOS bridge
Step 1 - BridgeClassDemo.h
BridgeClassDemo.h//
// BridgeClassDemo.h
// RaxelPulseReactNativeDemo
//
// Created by Sergey Emelyanov on 19/04/2020.
// Copyright © 2020 Data motion Pte.Ltd. All rights reserved.
// https://telematicssdk.com
#import "React/RCTBridgeModule.h"
// Instead of BridgeClassDemo put the name of your module
@interface BridgeClassDemo : NSObject <RCTBridgeModule>
@endStep 2 - DemoClass.m
DemoClass.mStep 3 - AppDelegate
Step 4 - React Native side
Last updated