$ npm install react-native-cardano --save
$ curl https://sh.rustup.rs -sSf | sh
Follow instructions. Restart Terminal application after installation (PATH should be updated)
- Install build targets:
$ rustup target add aarch64-apple-ios armv7-apple-ios armv7s-apple-ios x86_64-apple-ios i386-apple-ios
- Install
cargo-lipo
for building:$ cargo install cargo-lipo
$ rustup target add aarch64-linux-android armv7-linux-androideabi i686-linux-android x86_64-linux-android
Android NDK should be installed for Android. Check that local.properties
file in android
folder has ndk.dir
property and it's path is correct.
$ react-native link react-native-cardano
- In XCode, in the project navigator, right click
Libraries
➜Add Files to [your project's name]
- Go to
node_modules
➜react-native-cardano
and addRNCardano.xcodeproj
- In XCode, in the project navigator, select your project. Add
libRNCardano.a
to your project'sBuild Phases
➜Link Binary With Libraries
- Run your project (
Cmd+R
)
- Open up
android/app/src/main/java/[...]/MainActivity.java
- Add
import io.crossroad.rnardano.CardanoPackage;
to the imports at the top of the file - Add
new CardanoPackage()
to the list returned by thegetPackages()
method
- Append the following lines to
android/settings.gradle
:include ':react-native-cardano' project(':react-native-cardano').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-cardano/android')
- Insert the following lines inside the dependencies block in
android/app/build.gradle
:compile project(':react-native-cardano')
import { Wallet, HdWallet, RandomAddressChecker, PasswordProtect } from 'react-native-cardano';
Wallet.checkAddress("af01ba").then(isValid => console.log(isValid)); // Should print "false"
You can check all exported functions there.