Skip to content

Instantly share code, notes, and snippets.

@marktani
Last active February 27, 2016 21:02
Show Gist options
  • Save marktani/c787723732e8d760733f to your computer and use it in GitHub Desktop.
Save marktani/c787723732e8d760733f to your computer and use it in GitHub Desktop.
Native Android article
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE := nativemodule
LOCAL_SRC_FILES := NativeBridge.cpp
LOCAL_EXPORT_LDLIBS := -llog
LOCAL_LDLIBS := -llog
include $(BUILD_SHARED_LIBRARY)
APP_ABI := all
APP_STL := gnustl_static
APP_CPPFLAGS := -frtti -fexceptions -std=c++11
APP_OPTIM := debug
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment