Android/ARM64: Updated binary path
authorGeunsik Lim <geunsik.lim@samsung.com>
Tue, 12 Mar 2019 09:47:15 +0000 (18:47 +0900)
committerwooksong <wook16.song@samsung.com>
Wed, 13 Mar 2019 07:47:42 +0000 (16:47 +0900)
This commit is trivial. However, the existing statements have to be updated
to give developers a correct instruction. After updating *.mk file, The binary
path is also changed from ../ to ./ folder.

Signed-off-by: Geunsik Lim <geunsik.lim@samsung.com>
jni/README.md

index 54352f6..8f97456 100644 (file)
@@ -22,7 +22,7 @@ export PATH=$ANDROID_NDK:$PATH
 
 ## Download prebuilt Android-Gstreamer libraries
 Please download required files such as "*.tar.bz2" from http://nnsuite.mooo.com/warehouse/.
- * gstreamer-prebuilts-for-android-device/gst_root_android-custom-1.12.4-ndkr12b-20190213-0900/
+ * Dir: gstreamer-prebuilts-for-android-device/gst_root_android-custom-1.12.4-ndkr12b-20190213-0900/
 ```bash
 vi ~/.bashrc
 export GSTREAMER_ROOT_ANDROID=~/android/gst_root_android
@@ -33,16 +33,16 @@ mkdir -p ~/android/gst_root_android/arm64
 ```bash
 cd ./jni
 # We recommend that you always remove the libs and obj folder to avoid an unexpected binary inconsistency.
-rm -rf ../libs/ ../obj/
+rm -rf ./libs/ ./obj/
 ndk-build NDK_PROJECT_PATH=.  APP_BUILD_SCRIPT=./Android-nnstreamer.mk NDK_APPLICATION_MK=./Application.mk -j$(nproc)
-ls -al ../libs/arm64-v8a/libnnstreamer.so
+ls -al ./libs/arm64-v8a/libnnstreamer.so
 ```
 
 ## How to build a test application
 ```bash
 cd ./jni
 ndk-build NDK_PROJECT_PATH=.  APP_BUILD_SCRIPT=./Android-app.mk NDK_APPLICATION_MK=./Application.mk -j$(nproc)
-ls -al ../libs/arm64-v8a/
+ls -al ./libs/arm64-v8a/
 ```
 
 ## How to run the test application on the Android device