Skip to content

Instantly share code, notes, and snippets.

@peterhpchen
Created May 17, 2014 17:06
Show Gist options
  • Save peterhpchen/f9c8bbde7b813c4b8abf to your computer and use it in GitHub Desktop.
Save peterhpchen/f9c8bbde7b813c4b8abf to your computer and use it in GitHub Desktop.
ndk-build by self
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE := MyLib
LOCAL_SRC_FILES := main.c
include $(BUILD_SHARED_LIBRARY)
sourceSets.main.jni.srcDirs = [] //disable automatic ndk-build call
cd app/src/main
javah -d jni -classpath java com.hpchen.testndk02.app.MainActivity
cd jni
ndk-build
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment