Package Exports
- @telysoft/react-native-bluetooth
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@telysoft/react-native-bluetooth) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
@telysoft/react-native-bluetooth
Getting started
$ npm install @telysoft/react-native-bluetooth --save
Mostly automatic installation
$ react-native link @telysoft/react-native-bluetooth
Manual installation
iOS
- In XCode, in the project navigator, right click
Libraries
➜Add Files to [your project's name]
- Go to
node_modules
➜react-native-telysoft-bluetooth
and addRNTelysoftBluetooth.xcodeproj
- In XCode, in the project navigator, select your project. Add
libRNTelysoftBluetooth.a
to your project'sBuild Phases
➜Link Binary With Libraries
- Run your project (
Cmd+R
)<
Android
- Open up
android/app/src/main/java/[...]/MainActivity.java
- Add
import com.reactlibrary.RNTelysoftBluetoothPackage;
to the imports at the top of the file - Add
new RNTelysoftBluetoothPackage()
to the list returned by thegetPackages()
method
- Append the following lines to
android/settings.gradle
:include ':@telysoft/react-native-bluetooth' project(':@telysoft/react-native-bluetooth').projectDir = new File(rootProject.projectDir, '../node_modules/@telysoft/react-native-bluetooth/android')
- Insert the following lines inside the dependencies block in
android/app/build.gradle
:compile project(':@telysoft/react-native-bluetooth')
Windows
- In Visual Studio add the
RNTelysoftBluetooth.sln
innode_modules/@telysoft/react-native-bluetooth/windows/RNTelysoftBluetooth.sln
folder to their solution, reference from their app. - Open up your
MainPage.cs
app
- Add
using Telysoft.Bluetooth.RNTelysoftBluetooth;
to the usings at the top of the file - Add
new RNTelysoftBluetoothPackage()
to theList<IReactPackage>
returned by thePackages
method
Usage
import RNTelysoftBluetooth from '@telysoft/react-native-bluetooth';
// TODO: What to do with the module?
RNTelysoftBluetooth;