stack_wallet/README.md
2022-09-07 11:42:08 -06:00

54 lines
1.2 KiB
Markdown

[![codecov](https://codecov.io/gh/cypherstack/stack_wallet/branch/main/graph/badge.svg?token=PM1N56UTEW)](https://codecov.io/gh/cypherstack/stack_wallet)
# Stack Wallet
put details here
[![Playstore](https://bluewallet.io/img/play-store-badge.svg)](https://play.google.com/store/apps/details?id=com.cypherstack.stackwallet)
## Feature List
put features here
## Build and run
### Prerequisites
- Flutter 3.0.5
- Dart SDK Requirement (>=2.17.0, up until <3.0.0)
- Android/iOS dev setup (Android Studio, xCode and subsequent dependencies)
After that download the project and init the submodules
```
git clone https://github.com/cypherstack/stack_wallet.git
cd stack_wallet
git submodule update --init --recursive
```
Building plugins for Android
```
cd scripts/android/
./build_all.sh
// when finished go back to the root directory
cd ../..
```
Building plugins for IOS
```
cd scripts/ios/
./build_all.sh
// when finished go back to the root directory
cd ../..
```
Building plugins for testing on Linux
```
cd scripts/linux/
./build_all.sh
// when finished go back to the root directory
cd ../..
```
Finally, plug in your android device or use the emulator available via Android Studio and then run the following commands:
```
flutter pub get
flutter run
```