- Notifications
You must be signed in to change notification settings - Fork0
Android runtime for NativeScript (based on V8)
License
Akylas/nativescript-android-runtime
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
Contains the source code for the NativeScript's Android Runtime.NativeScript is a framework which enables developers to write truly native mobile applications for Android and iOS using JavaScript and CSS. Each mobile platform has its own ecosystem and offers completely different development tools and language(s) - Java for Android and Objective C (Swift) for iOS. In order to translate JavaScript code to the corresponding native APIs some kind of proxy mechanism is needed. This is exactly what the "Runtime" parts of NativeScript are responsible for. The Android Runtime may be thought of as "The Bridge" between the JavaScript and Android worlds. A NativeScript application for Android is a standard native package (apk) which besides the JavaScript files embed the runtime as well.
- Main Projects
- Helper Projects
- Architecture Diagram
- Build Prerequisites
- How to build
- How to run tests
- Misc
- Get Help
Several Wiki pages describe some internal topics about the runtimehere
The repo is structured in the following projects (ordered by dependencies):
- android-metadata-generator - generates metadata necessary for the Android Runtime.
- android-binding-generator - enables Java & Android types to be dynamically created at runtime. Needed by the
extendroutine. - android-runtime - contains the core logic behind the NativeScript's Android Runtime. This project contains native C++ code and needs the Android NDK to build properly.
- android-runtime-testapp - this is a vanilla Android Application, which contains the tests for the runtime project.
- android-static-binding-generator - build tool that generates bindings based on the user's javascript code.
- project-template - this is an empty placeholder Android Application project, used by theNativeScript CLI when building an Android project.
The NativeScript Android Runtime architecture can be summarized in the following diagram.
For more details on how it works, read thedocumentation.
Following are the minimal prerequisites to build the runtime package.
- Install the latestAndroid Studio.
- From the SDK Manager (Android Studio -> Tools -> Android -> SDK Manager) install the following components:
- Android API Level 23, 24, 25, 26, 27
- Android NDK
- Android Support Repository
- Download Build Tools
- CMake
- LLDB
- Clone this repository as well as the submodules:
git clone --recurse-submodules git@github.com:NativeScript/android-runtime.git
- Open the test-app folder in Android Studio. It represents a valid Android project and you are able to build and run a test application working with the Runtime from the source.
Note: You might need to run the Android Studio from the command line in order to preserve the environment variables. This is in case you get errors like "missing npm" if starting the studio the usual way.
Install dependencies from NPM:
cd test-app/build-tools/jsparsernpm installSet environment variables:
JAVA_HOMEsuch that$JAVA_HOME/bin/javapoints to your Java executableANDROID_HOMEpointing to where you have installed the Android SDKANDROID_NDK_HOMEpointing to the version of the Android NDK needed for this version of NativeScript
Run command
Windows:
gradlew
Mac/Linux:
./gradlew
The build process includes building of the runtime package (both optimized and with unstripped v8 symbol table), as well as all supplementary tools used for the android builds: metadata-generator, binding-generator, metadata-generator, static-binding-generator
The result of the build will be in the dist folder.
Note:To cut the build time in half and package only the optimized (stripped) version of the runtime package comment out 'tasks.generateRuntimeAar.execute()' in thebuild.gradle script.
Go to subfolder test-app after you built the runtime.
Start an emulator or connect a device.
Note: Keep in mind the device or emulator needs to have an sdcard mounted.Run command
gradlew runtests
- Install dependencies: run command
cd test-appnpm install- Run the test app in Android Studio, or manually in the emulator.
- Run command
npx ns debug android --start
(If you instead have thenativescript NPM module installed globally,you can omit thenpm install and thenpx prefix.)
- This will print out a URL, such as
devtools://devtools/bundled/inspector.html?ws=localhost:40000.Open this URL in Chrome or Chromium.
We love PRs! Check out thecontributing guidelines. If you want to contribute, but you are not sure where to start - look forissues labeledhelp wanted.
Please, usegithub issues strictly forreporting bugs orrequesting features. For general questions and support, check outStack Overflow or ask our experts inNativeScript community Slack channel.
About
Android runtime for NativeScript (based on V8)
Resources
License
Code of conduct
Contributing
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Packages0
Languages
- C++59.4%
- Java32.2%
- JavaScript6.4%
- Kotlin1.0%
- C0.8%
- CMake0.1%
- Other0.1%
