Skip to content

Latest commit

 

History

History
54 lines (39 loc) · 1.42 KB

README.md

File metadata and controls

54 lines (39 loc) · 1.42 KB

Port Mobile App

Installation

  • Android Studio - Follow instructions here. *or install any other IDE (Visual Studio, Xcode)

  • Flutter - Follow instructions here.

Getting Started

  • Download(git clone) the project

  • In root directory (where pubspec.yaml is) call:

flutter packages get
  • To run:
flutter run --no-sound-null-safety

On iOS, If you encounter error: "Codepoint 62495 not found in font, aborting.", 
add '--no-tree-shake-icons' flag to the above command.

# Release version
flutter run --release 

On iOS, If you encounter error: "Codepoint 62495 not found in font, aborting.", 
add '--no-tree-shake-icons' flag to the above command.

  • To build app:
# Android
flutter build apk
flutter build apk --release --no-shrink 

#iOS (on macOS host)
flutter build ios --release 

If you encounter error: "Codepoint 62495 not found in font, aborting.", 
add '--no-tree-shake-icons' flag to the above command.

  • To build app bundle:
flutter build appbundle --no-tree-shake-icons

Usage

  • Fill the data in this function
    • configure blockchain nodes like here (IP address, port, encryption connection check and network type(chainID))
    • set StorageServer (IP address, port and encryption connection check)
  • Run the project from your IDE