Skip to content
Please note that GitHub no longer supports your web browser.

We recommend upgrading to the latest Google Chrome or Firefox.

Learn more
Android runtime for NativeScript (based on V8)
C++ C Java JavaScript CMake Shell
Branch: master
Clone or download
Latest commit 5692437 Sep 17, 2019
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
.github chore: missing bracket Oct 5, 2018
build-artifacts Upgrade v8 to 7.7.299.11 Sep 16, 2019
docs Update extending-inspector.md Jun 4, 2019
gradle/wrapper chore: update android gradle to latest version Aug 26, 2019
test-app Upgrade v8 to 7.7.299.11 Sep 16, 2019
tools add DevTools page-agent implementation to display additional files in… Feb 13, 2017
.gitattributes changed default binding package name Feb 17, 2015
.gitignore Show only the error message when built tool fails Sep 9, 2019
.gitmodules Revert "fix(tooling): wait for emulator before running adb commands (#… Mar 7, 2018
.travis.yml Update sdk and build tools version to 29 (#1450) Aug 21, 2019
CHANGELOG.md Upgrade v8 to 7.7.299.11 Sep 16, 2019
CODE_OF_CONDUCT.md chore: update community files Jan 17, 2018
CONTRIBUTING.md Update CONTRIBUTING.md Mar 5, 2015
CodingStyle.Cpp.xml formatted all the code Dec 18, 2015
CodingStyle.Java.xml formatted all the code Dec 18, 2015
LICENSE chore: update community files Jan 7, 2019
README.md Removed waffle.io link Jun 19, 2019
RUNTIME.iml inital setup Jul 5, 2016
build.gradle Copy helper gradle files from app folder when building Sep 10, 2019
build.sh Run tests on multiple emulators Mar 5, 2019
gradlew Plamen5kov/update gradle to latest stable (#849) Oct 12, 2017
gradlew.bat Plamen5kov/update gradle to latest stable (#849) Oct 12, 2017
package.json chore: bump versions Aug 30, 2019
v8-versions.json Upgrade v8 to 7.7.299.11 Sep 16, 2019

README.md

Android Runtime for NativeScript

Build Status

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

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 extend routine.
  • 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.

Helper Projects

Architecture Diagram

The NativeScript Android Runtime architecture can be summarized in the following diagram.

Android Runtime diagram

For more details on how it works, read the documentation.

Build Prerequisites

Following are the minimal prerequisites to build the runtime package.

  • Install the latest Android 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

Working with the Runtime in Android Studio

  • 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.

How to Build

  • 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 the build.gradle script.

How to Run Tests

  • 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 runtest

Contribute

We love PRs! Check out the contributing guidelines. If you want to contribute, but you are not sure where to start - look for issues labeled help wanted.

Misc

Get Help

Please, use github issues strictly for reporting bugs or requesting features. For general questions and support, check out Stack Overflow or ask our experts in NativeScript community Slack channel.

You can’t perform that action at this time.