2

Duktape doesn't seem to have Android as a platform out of the box. How should i configure it to be able to build a native c/c++ shared library out of it myself, to be run on Android? Please let me know the different flags to get it to configure and compile with the smallest sized library file.

Itay Bianco
  • 697
  • 6
  • 16

1 Answers1

0

Square currently maintains an android version of Duktape. https://github.com/square/duktape-android

Just add the following gradle dependency to your project: compile 'com.squareup.duktape:duktape-android:1.2.0'

Evan Tobin
  • 76
  • 7