react-native-baseband-detector
v0.3.0
Published
React Native module to detect Android Baseband version
Maintainers
Readme
react-native-baseband-detector
A small React Native module to get the Android baseband version.
⚠️ Works only on Android. iOS does not expose baseband version.
📦 Installation
npm install react-native-baseband-detector
Usage :
import BasebandDetector from "react-native-baseband-detector";
async function checkBaseband() {
try {
const baseband = await BasebandDetector.getBasebandVersion();
console.log("Baseband version:", baseband);
} catch (e) {
console.error("Failed to get baseband version", e);
}
}