We are hiring, join us! π¨βπ»π©βπ»
- Related: ledger-live-desktop
Ledger Live is a mobile companion app for Ledger hardware wallets. It allows users to manage their crypto assets securely, such as Bitcoin, Ethereum, XRP and many others. Ledger Live mobile is available for iOS and Android.
Ledger Live is a native mobile application built with React Native, React, Redux, RxJS, etc. and some native libraries. The architecture is analog to the desktop application and also uses our C++ library, lib-ledger-core, to deal with blockchains (sync, broadcast...) via ledger-core-react-native-bindings. It communicates with the Ledger Nano X via Bluetooth (or USB for using the Ledger Nano S on Android) to manage installed applications, update the device firmware, verify public addresses and sign transactions with ledgerjs. We also share some logic in live-common.
- Node LTS version
- Yarn 1.10.1 or above
- XCode
- Android Studio
install dependencies.
Runs your app in development mode.
Sometimes you may need to reset or clear the React Native packager's cache. To do so, you can pass the --reset-cache
flag to the start script:
yarn start -- --reset-cache
or open ios/ledgerlivemobile.xcworkspace
or open android/
in Android Studio.
Delete the application data for Ledger Live Mobile, equivalent to doing it manually through settings
Passing a base64 encoded export string (the export from desktop) will trigger an import activity and allow easy data setting for development.
Optional environment variables you can put in .env
, .env.production
or .env.staging
for debug, release, or staging release builds respectively.
DEVICE_PROXY_URL=http://localhost:8435 # enable a dev mode to use the device over HTTP. use with https://github.com/LedgerHQ/ledgerjs/tree/master/packages/hw-http-proxy-devserver
BRIDGESTREAM_DATA=... # come from console.log of the desktop app during the qrcode export. allow to bypass the bridgestream scanning
DEBUG_RNDEBUGGER=1 # enable react native debugger
DISABLE_READ_ONLY=1 # disables readonly mode by default
yarn sync-flowtyped
yarn sync-locales
It's recommended to use react-native-debugger instead of Chrome dev tools as it features some additional React and Redux panels.
- Get the react-native-debugger app from the official repo
- Run it
- Run Ledger Live Mobile in debug mode (
yarn ios
oryarn android
) - Open React Native Development menu (shake gesture)
- Chose Enable Remote JS Debugging
Keep in mind that doing so will run your Javascript code on a Chromium JS engine (V8) on your computer, instead of iOS' system JS engine (JavaScript Core), or our bundled JS engine (JSC for now, soon to be replaced with Hermes) on Android.
Run the app from the Apple or Google own IDE to get some native debugging features like breakpoints etc.
Flipper has been integrated in the project, so you can use it to get additional debugging information (like network monitoring) and find other useful data you could previously get from scattered places, here neatly presented in a single interface (like logs and crash reports for both platforms).
React Native integration seems pretty bleeding edge right now, so don't expect everything to work just yet.
- Install Flipper on your computer
- Launch it π
- Run Ledger Live Mobile in debug as usual
- No need to enable remote debug!