Last active
February 27, 2016 21:02
-
-
Save marktani/c787723732e8d760733f to your computer and use it in GitHub Desktop.
Native Android article
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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