react-native-serialport-bluetooth
Version:
comunicacao serialport e bluetooth para android
19 lines (18 loc) • 763 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _reactNative = require("react-native");
const LINKING_ERROR = `The package 'react-native-serialport-bluetooth' doesn't seem to be linked. Make sure: \n\n` + _reactNative.Platform.select({
ios: "- You have run 'pod install'\n",
default: ''
}) + '- You rebuilt the app after installing the package\n' + '- You are not using Expo managed workflow\n';
const SerialportBluetooth = _reactNative.NativeModules.SerialportBluetooth ? _reactNative.NativeModules.SerialportBluetooth : new Proxy({}, {
get() {
throw new Error(LINKING_ERROR);
}
});
var _default = SerialportBluetooth;
exports.default = _default;
//# sourceMappingURL=native_module.js.map