
Security News
The Changelog Podcast: Practical Steps to Stay Safe on npm
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.
@secux/transport-reactnative
Advanced tools
@secux/transport-reactnativeSecuX Hardware Wallet react native API for communication layer
npm install @secux/transport-reactnative react-native-ble-plx react-native-settings
ios folder and run pod updateNSBluetoothAlwaysUsageDescription in info.plist file. (it is a requirement since iOS 13)android folder, open build.gradle make sure that min SDK version is at least 18:buildscript {
ext {
...
minSdkVersion = 18
...
build.gradle make sure to add jitpack repository to known repositories:allprojects {
repositories {
...
maven { url 'https://www.jitpack.io' }
}
}
build.gradle make sure that gradle version is at least 4.1.0:buildscript {
dependencies {
classpath("com.android.tools.build:gradle:4.1.0")
...
AndroidManifest.xml, add Bluetooth permissions:<manifest xmlns:android="http://schemas.android.com/apk/res/android"
...
<uses-permission android:name="android.permission.BLUETOOTH"/>
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<uses-feature android:name="android.hardware.bluetooth_le" android:required="true"/>
...
In below example, we use react-native-dialog npm package to do OTP process.
import React from 'react';
import { StyleSheet, Text, View, Button, FlatList } from 'react-native';
import Dialog from 'react-native-dialog';
import { SecuxReactNativeBLE } from "@secux/transport-reactnative";
export default function App() {
const [scanning, SetScanning] = React.useState(false);
const [dialog, ShowDialog] = React.useState(false);
const [otp, SetOTP] = React.useState();
const [devices, SetDevices] = React.useState([]);
const [transport, SetTransport] = React.useState();
const AddDevice = (device) => {
device.clicked = false;
SetDevices(x => [...x, device]);
};
const DeleteDevice = (device) => {
SetDevices(x => x.filter(item => item.id !== device.id));
};
const scan = () => {
SecuxReactNativeBLE.StartScan(AddDevice, DeleteDevice);
SetScanning(true);
};
const connect = async (uid) => {
SecuxReactNativeBLE.StopScan();
const device = await SecuxReactNativeBLE.Create(
uid,
() => console.log("connected"),
() => console.log("disconnected")
);
SetTransport(device);
await device.Connect();
ShowDialog(true);
// device is connected
};
const otp_processing = async () => {
const success = await transport.SendOTP(otp);
if (success) ShowDialog(false);
};
return (
<View style={styles.container}>
<View style={{ flex: 1, alignItems: "center" }}>
<Text>Sample Project</Text>
<Button>
title="BLE Connect"
onPress={scan} disabled={scanning}
<Button/>
<FlatList>
data={devices}
renderItem={
({ item }) =>
<Button>
style={styles.item}
title={item.name}
disabled={item.clicked}
onPress={
async () => {
item.clicked = true;
await connect(item.id);
}
}
<Button/>
}
<FlatList/>
</View>
<View>
<Dialog.Container visible={dialog}>
<Dialog.Title>OTP Authentication</Dialog.Title>
<Dialog.Input value={otp} onChangeText={SetOTP} />
<Dialog.Button label="OK" onPress={otp_processing} />
</Dialog.Container>
</View>
</View >
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
paddingTop: 22,
},
item: {
padding: 10,
fontSize: 18,
height: 44,
},
});
FAQs
SecuX Hardware Wallet react native API for communication layer
The npm package @secux/transport-reactnative receives a total of 0 weekly downloads. As such, @secux/transport-reactnative popularity was classified as not popular.
We found that @secux/transport-reactnative demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.

Security News
Ruby's creator Matz assumes control of RubyGems and Bundler repositories while former maintainers agree to step back and transfer all rights to end the dispute.