#add ABI platform
APP_ABI := armeabi-v7a arm64-v8a

#add system libs
TARGET_LIBGCC = -lgcc -lpthread

APP_STL := c++_static

APP_CFLAGS += -Wall -Werror
APP_CPPFLAGS += -std=c++11 -Wall -Werror

# unused variable 'kPathSeparatorString' in google test
APP_CPPFLAGS += -Wno-unused-const-variable

APP_BUILD_SCRIPT = ./Android.mk

# To fix problem with clean, when deploy folder is absent
APP_ALLOW_MISSING_DEPS=true