$ npm install react-native-iota --save
$ react-native link react-native-iota
- In XCode, in the project navigator, right click Libraries➜Add Files to [your project's name]
- Go to node_modules➜react-native-iotaand addRNIota.xcodeproj
- In XCode, in the project navigator, select your project. Add libRNIota.ato your project'sBuild Phases➜Link Binary With Libraries
- Run your project (Cmd+R)<
- Open up android/app/src/main/java/[...]/MainActivity.java
- Add import com.reactlibrary.RNIotaPackage;to the imports at the top of the file
- Add new RNIotaPackage()to the list returned by thegetPackages()method
- Append the following lines to android/settings.gradle:include ':react-native-iota' project(':react-native-iota').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-iota/android')
- Insert the following lines inside the dependencies block in android/app/build.gradle:compile project(':react-native-iota')
- In Visual Studio add the RNIota.slninnode_modules/react-native-iota/windows/RNIota.slnfolder to their solution, reference from their app.
- Open up your MainPage.csapp
- Add using Iota.RNIota;to the usings at the top of the file
- Add new RNIotaPackage()to theList<IReactPackage>returned by thePackagesmethod
import RNIota from 'react-native-iota';
// TODO: What to do with the module?
RNIota;