This is a group of modules for Nativium ready to use in production.
The modules are ready to use with Nativium project. Visit oficial website:
https://github.com/nativium/nativium
Visit:
https://nativium.github.io/nativium-modules/
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
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
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.
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
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
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