Android Ndk : Make: *** No Rule To Make Target. Stop
I am trying to build libusb using the NDK. Here is my Android.mk and Application.mk I have checked this thread Android NDK: No rule to make target but it didn't work for me. Androi
Solution 1:
Looks like you forgot to set LOCAL_PATH
, i.e. in your Android.mk
you should have:
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
# ..etc as before..
Post a Comment for "Android Ndk : Make: *** No Rule To Make Target. Stop"