Skip to content

nativium/nativium-modules

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Nativium - Modules

Nativium Modules



This is a group of modules for Nativium ready to use in production.


General

The modules are ready to use with Nativium project. Visit oficial website:

https://github.com/nativium/nativium

Web Assembly Demo

Visit:

https://nativium.github.io/nativium-modules/

Build for Linux

Execute the following commands to build for Linux:

git clone https://github.com/nativium/nativium.git nativium
cd nativium
python3 nativium.py custom install --path=../custom
python3 nativium.py target linux setup
python3 nativium.py target linux build
python3 nativium.py target linux run

Build for macOS

Execute the following commands to build for macOS:

git clone https://github.com/nativium/nativium.git nativium
cd nativium
python3 nativium.py custom install --path=../custom
python3 nativium.py target macos setup
python3 nativium.py target macos build
python3 nativium.py target macos run

Build for Windows

Execute the following commands to build for Windows:

git clone https://github.com/nativium/nativium.git nativium
cd nativium
python3 nativium.py custom install --path=../custom
python3 nativium.py target windows setup
python3 nativium.py target windows build
python3 nativium.py target windows run

Obs: On Windows the terminal needs to be opened as administrator, otherwise the symlinks will not be created.

Build for iOS

Execute the following commands to build for iOS:

git clone https://github.com/nativium/nativium.git nativium
cd nativium
python3 nativium.py custom install --path=../custom
python3 nativium.py target ios setup
python3 nativium.py target ios build
python3 nativium.py target ios package --no-framework
python3 nativium.py target ios dist generate
python3 nativium.py app ios-pods

Open the project for Xcode:

open apps/ios/runner/Runner.xcworkspace

Build for Android

Execute the following commands to build for Android:

git clone https://github.com/nativium/nativium.git nativium
cd nativium
python3 nativium.py custom install --path=../custom
python3 nativium.py target android setup
python3 nativium.py target android build
python3 nativium.py target android package
python3 nativium.py target android dist generate

Open the project for Android Studio:

apps/android/runner

Build for WASM

Execute the following commands to build for Web Assembly (WASM):

git clone https://github.com/nativium/nativium.git nativium
cd nativium
python3 nativium.py custom install --path=../custom
python3 nativium.py target wasm setup
python3 nativium.py target wasm build
python3 nativium.py target wasm serve