threefoldtech / myceliumflut

0 stars 0 forks source link

myceliumflut

A mycelium flutter UI

Development

prequisites

iOS

requirements

build iOS Swift-Rust Bridge

cd mycelmob
bash build-ios.sh

there is IPHONEOS_DEPLOYMENT_TARGET variable in the build-ios.sh which need to be the same with the value set in XCode.

Macos

build Macos Swift-Rust Bridge

cd mycelmob
bash build-mac.sh

Android

requirements

build Android Kotlin-Rust Bridge

cd mycelmob
bash build-android.sh

Windows

requirements

Visual Studio 2022.

Complete list at https://docs.flutter.dev/get-started/install/windows/desktop#software-requirements

build Windows DLL

cd mycelffi
./build.bat

run

go to myceliumflut dir

Usage

Windows

We currently need to run it as administrator

Installer / Release

Android

self distributed .apk

flutter build apk

google playstore release

  1. create the signature, as described at https://docs.flutter.dev/deployment/android#sign-the-app
  2. change signingConfig signingConfigs.debug in build.gradle to signingConfig signingConfigs.release
  3. increase build number in pubspec.yaml
  4. build the .aab (application bundle)
    flutter build appbundle

Windows

Build in release mode

flutter build windows --release

copy visual studo .dll files:

cp 'C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Redist\MSVC\14.40.33807\x64\Microsoft.VC143.CRT\msvcp140.dll' .\build\windows\x64\runner\Release\
cp 'C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Redist\MSVC\14.40.33807\x64\Microsoft.VC143.CRT\msvcp140_1.dll' .\build\windows\x64\runner\Release\ 
cp 'C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Redist\MSVC\14.40.33807\x64\Microsoft.VC143.CRT\msvcp140_2.dll' .\build\windows\x64\runner\Release\  
cp 'C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Redist\MSVC\14.40.33807\x64\Microsoft.VC143.CRT\vcruntime140.dll' .\build\windows\x64\runner\Release\
cp 'C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Redist\MSVC\14.40.33807\x64\Microsoft.VC143.CRT\vcruntime140_1.dll' .\build\windows\x64\runner\Release\

run preparation script

.\installers\windows\prepare.bat

Run Inno Setup, our working dir is build\windows\x64\runner\Release:

Scroll down the list & select the data folder path and click on Edit… button. It is important to ensure that the destination sub-folder has the same name data otherwise the app wont run after installation as all contents of the folder are dispersed outside. So, enter the name of the Destination subfolder as data and click OK.

The Inno Setup script can be found here, you need to modify the path (according to your env) before Build it on Inno Setup app.