#add ABI platform
APP_ABI := armeabi-v7a arm64-v8a

#add system libs
TARGET_LIBGCC = -lgcc

APP_STL := c++_static

APP_CFLAGS += -Wall -Werror
APP_CPPFLAGS += -Wall -Werror -std=c++11

# 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