Im trying to convert cpp files to so file. Following is my make file
build:
ndk-build
install:
cp -r libs/armeabi-v7a/*.so ../src/main/jniLibs/armeabi-v7a/
cp -r libs/arm64-v8a/*.so ../src/main/jniLibs/arm64-v8a/
clean:
ndk-build clean
I tried running make
but Im getting the following error,
make: ndk-build: No such file or directory
Ofcourse I have installed ndk in my mac. what am i missing?