We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a66708 commit 6e25b82Copy full SHA for 6e25b82
README.md
@@ -2,6 +2,35 @@
2
3
[QuickJS](https://bellard.org/quickjs/) Android wrapper.
4
5
+## Build
6
+
7
+```
8
+git clone --recurse-submodules https://github.com/seven332/quickjs-android.git
9
10
11
+Open the folder `quickjs-android` in Android Studio.
12
13
+## Download
14
15
+1. Add the JitPack repository to your root build.gradle.
16
17
+```gradle
18
+allprojects {
19
+ repositories {
20
+ ...
21
+ maven { url 'https://jitpack.io' }
22
+ }
23
+}
24
25
26
+2. Add quickjs-android dependency to your application build.gradle.
27
28
29
+dependencies {
30
+ implementation "com.github.seven332:quickjs-android:0.1.0"
31
32
33
34
## Usage
35
36
### Evaluate Javascript Scripts
0 commit comments