2022-08-28 13:53:21 +00:00
|
|
|
[![codecov](https://codecov.io/gh/cypherstack/stack_wallet/branch/main/graph/badge.svg?token=PM1N56UTEW)](https://codecov.io/gh/cypherstack/stack_wallet)
|
|
|
|
|
2022-08-26 08:11:35 +00:00
|
|
|
# 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
|
2022-08-28 13:53:21 +00:00
|
|
|
- Flutter 3.0.5
|
2022-09-07 17:42:08 +00:00
|
|
|
- Dart SDK Requirement (>=2.17.0, up until <3.0.0)
|
2022-08-26 08:11:35 +00:00
|
|
|
- Android/iOS dev setup (Android Studio, xCode and subsequent dependencies)
|
|
|
|
|
|
|
|
After that download the project and init the submodules
|
|
|
|
```
|
2022-08-28 13:53:21 +00:00
|
|
|
git clone https://github.com/cypherstack/stack_wallet.git
|
|
|
|
cd stack_wallet
|
2022-08-26 08:11:35 +00:00
|
|
|
git submodule update --init --recursive
|
|
|
|
```
|
|
|
|
|
|
|
|
Building plugins for Android
|
|
|
|
```
|
2022-09-07 17:42:08 +00:00
|
|
|
cd scripts/android/
|
2022-08-26 08:11:35 +00:00
|
|
|
./build_all.sh
|
|
|
|
// when finished go back to the root directory
|
2022-09-07 17:42:08 +00:00
|
|
|
cd ../..
|
2022-08-26 08:11:35 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
Building plugins for IOS
|
|
|
|
|
|
|
|
```
|
2022-09-07 17:42:08 +00:00
|
|
|
cd scripts/ios/
|
2022-08-26 08:11:35 +00:00
|
|
|
./build_all.sh
|
|
|
|
// when finished go back to the root directory
|
2022-09-07 17:42:08 +00:00
|
|
|
cd ../..
|
2022-08-26 08:11:35 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
Building plugins for testing on Linux
|
|
|
|
|
|
|
|
```
|
2022-09-07 17:42:08 +00:00
|
|
|
cd scripts/linux/
|
2022-08-26 08:11:35 +00:00
|
|
|
./build_all.sh
|
|
|
|
// when finished go back to the root directory
|
2022-09-07 17:42:08 +00:00
|
|
|
cd ../..
|
2022-08-26 08:11:35 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
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
|
|
|
|
```
|