diff --git a/app/build.gradle b/app/build.gradle index 3529770..c9cbad4 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -9,7 +9,7 @@ android { minSdkVersion 16 targetSdkVersion 22 versionCode 1 - versionName "2.5" + versionName "2.6" ndk { abiFilters "armeabi-v7a", "x86" } diff --git a/build.gradle b/build.gradle index 3a56163..6514a0b 100644 --- a/build.gradle +++ b/build.gradle @@ -5,7 +5,7 @@ buildscript { jcenter() } dependencies { - classpath 'com.android.tools.build:gradle:2.3.1' + classpath 'com.android.tools.build:gradle:2.3.3' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files diff --git a/library/build.gradle b/library/build.gradle index 62a2302..fa4bb22 100644 --- a/library/build.gradle +++ b/library/build.gradle @@ -8,7 +8,7 @@ android { minSdkVersion 16 targetSdkVersion 22 versionCode 1 - versionName "2.5" + versionName "2.6" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" ndk { diff --git a/library/src/main/cpp/libenc/libenc.cc b/library/src/main/cpp/libenc/libenc.cc index 813ffef..85ad3d3 100644 --- a/library/src/main/cpp/libenc/libenc.cc +++ b/library/src/main/cpp/libenc/libenc.cc @@ -1,9 +1,10 @@ #include - -#include +#include #include #include +#include + #define LIBENC_LOGD(...) ((void)__android_log_print(ANDROID_LOG_DEBUG, "libenc", __VA_ARGS__)) #define LIBENC_LOGI(...) ((void)__android_log_print(ANDROID_LOG_INFO , "libenc", __VA_ARGS__)) #define LIBENC_LOGW(...) ((void)__android_log_print(ANDROID_LOG_WARN , "libenc", __VA_ARGS__))