Lisk Mobile is a cross-platform application written in React Native and primarily built for iOS and Android. It provides all the functionalities required that allow the users to send and receive LSK tokens, coupled with the ability to access the activity history of any Lisk blockchain account.
Please install the required prerequisites to run Lisk Mobile from source.
-
$ /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
-
$ brew install git
-
Node.js (recommended 14.9.0)
$ brew install node
-
$ brew install nvm
Remember to follow Brew additional steps for enabling NVM fully. After running
brew install nvm
, Brew will detail this steps. -
NPM (recommended 6.14.16)
$ nvm install-latest-npm
npm
is shipped with Node.js. But to have a specific version installed see here. -
$ brew install watchman
- Install the latest version of Xcode to use the simulator.
- Install Android Studio, and ensure the options listed below are also checked and installed:
- Android SDK
- Android SDK Platform
- Performance (Intel ยฎ HAXM)
- Android Virtual Device
- Install the Android SDK. Consider these configurations:
- compileSdkVersion: 33
- buildToolsVersion: 33.0.0
On your terminal, go to the directory you want to install Lisk Mobile and run:
$ git clone https://github.com/LiskHQ/lisk-mobile.git
$ cd lisk-mobile
$ nvm install
$ npm ci
$ npm run link
$ npm start
To run the app on ios, you have to install pods
.
For this, just run:
$ npx pod-install
$ npm run ios
If your machine has the Apple Silicon chip (not Intel), you will have to run some additional steps, which we hope are going to be solved in a short term while the new chip is more widely adopted.
The process is:
- Locate in Terminal app in Finder.
- Right-click and click on Get Info
- Check the Open using Rosetta checkbox.
- Quit Terminal app and run it again
- Go to your app folder and run
sudo gem install ffi
- Run
npx pod-install
- Run
npm run ios
More details can be found here.
Before building the app, make sure to have a valid and non-expired SSL certificate from Lisk Service.
All API calls to Lisk Service pass through a Certificate Pinning process, for which a valid server-cert.cer
file should be added to the source code before any build. Devnet is excluded from this.
For creating the certificates:
-
Fetch them from Lisk Service server:
openssl s_client -showcerts -servername <LISK SERVICE NETWORK DOMAIN> -connect <LISK SERVICE NETWORK DOMAIN>:443 </dev/null
LISK SERVICE NETWORK DOMAIN
could be for example,betanet-service.lisk.com
. -
The previous command will print on the terminal all the certificates available on that server. Copy the root certificate (from
BEGIN
toEND
), create the fileserver-cert.pem
on the root folder of the project and paste the certificate content on it. -
Convert the certificate from
.pem
to.cer
:openssl x509 -in server-cert.pem -outform der -out server-cert.cer
The certificate location varies based on the platform which the app is being build. See the "Build on iOS" and "Build on Android" sections for details.
More details of the certificate generation can be found on the docs of the Certificate Pinning library that we use.
Before building on iOS, make sure that Lisk Service's SSL certificate is added to the "Bundle Resources" of the app:
- Open the app on Xcode.
- Go to Build Phases/ Copy Bundle Resources/ Add button.
- Add the
server-cert.cer
file.
To build the app on iOS run:
$ npm run build:ios
Before building on Android, make sure that Lisk Service's SSL certificate (server-cert.cer
) is added to the android/app/src/main/assets
folder.
To build the app on Android run:
$ npm run build:android
To run android:
$ npm run android
$ npm run test
You can run the project in Xcode and use iOS simulators, or alternatively use Android simulators. There are several options to set up your Android development environment. Please read the React Native docs for more information.
There is a standalone app for debugging React Native which has a React and Redux debugger enabled by default. Please read the React Native Debugger for more information.
If you face this error when trying to run the app:
/Users/***/Library/Developer/Xcode/DerivedData/Lisk-***/Build/Products/Debug-iphonesimulator/lottie-ios/Lottie.modulemap
Follow these steps below which should resolve any errors:
- Add the following to the end of your Podfile (especially M1 users).
post_install do |installer|
react_native_post_install(installer)
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings["ONLY_ACTIVE_ARCH"] = "NO"
end
end
end
- Remove Pods folder and Podfile.lock
rm -rf ios/Pods && rm -rf ios/Podfile.lock
- Run
npx pod-install
on your terminal.
If you face this error when trying to run the app:
Products/Debug-iphonesimulator/react-native-udp/libreact-native-udp.a(GCDAsyncUdpSocket.o)
ld: 144 duplicate symbols for architecture x86_64
Follow this steps to solve it:
- Run
npx patch-package
- Remove Pods folder and Podfile.lock
rm -rf ios/Pods && rm -rf ios/Podfile.lock
npx pod-install
Create android/local.properties
and add this line in the file for Mac Users:
sdk.dir=/Users/username/Library/Android/sdk
OR
Set the environmental PATH to your sdk installation location.
Since some of the fonts used in the production version are commercial, this repository only contains open source fonts and uses Open Sans
as a replacement for the commercial ones.
If you have licensed copies of Basier Circle
and Gilroy
, you can add them to fonts folder with the naming convention stated in styleGuide/fonts.js
file and make sure all the fonts are linked.
$ react-native link ./src/assets/fonts
Please see CONTRIBUTING.md for more information.
See contributors section.
Copyright ยฉ 2016-2024 Lisk Foundation
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.