You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It will create a `android-ndk-r21` folder. Save that path for later.
71
+
It will create a `android-ndk-r21b` folder. Save that path for later.
72
72
73
73
### Building the Android library on Linux or macOS:
74
74
@@ -82,11 +82,11 @@ git checkout mobile-master
82
82
83
83
#### 2a) Using the Android helper script:
84
84
85
-
The `tools/android_build.sh` script takes as first argument the Android NDK path (in our case is `~/android-ndk-r21`). The second argument is optional and is the target architecture, which can be one of the following: `arm`, `x86`, `arm64` or `x86_64`. If no target architecture is provided, it will build all available architectures.
85
+
The `tools/android_build.sh` script takes as first argument the Android NDK path (in our case is `~/android-ndk-r21b`). The second argument is optional and is the target architecture, which can be one of the following: `arm`, `x86`, `arm64` or `x86_64`. If no target architecture is provided, it will build all available architectures.
86
86
Run:
87
87
88
88
```sh
89
-
./tools/android_build.sh ~/android-ndk-r21
89
+
./tools/android_build.sh ~/android-ndk-r21b
90
90
```
91
91
92
92
When done, each built shared library will be placed in `out_android/$(ARCHITECTURE)/libnode.so`.
@@ -95,7 +95,7 @@ When done, each built shared library will be placed in `out_android/$(ARCHITECTU
95
95
Run the `android-configure` script to configure the build with the path to the downloaded NDK and the desired target architecture.
96
96
97
97
```sh
98
-
source ./android-configure ../android-ndk-r21 arm
98
+
source ./android-configure ../android-ndk-r21b arm
0 commit comments