diff --git a/modules/core/src/system.cpp b/modules/core/src/system.cpp index b8a46611bc..42bf6593db 100644 --- a/modules/core/src/system.cpp +++ b/modules/core/src/system.cpp @@ -96,6 +96,10 @@ #endif #endif +#ifdef ANDROID +# include +#endif + namespace cv { @@ -556,6 +560,9 @@ void error( const Exception& exc ) exc.func.c_str() : "unknown function", exc.file.c_str(), exc.line ); fprintf( stderr, "%s\n", buf ); fflush( stderr ); +# ifdef ANDROID + __android_log_print(ANDROID_LOG_ERROR, "cv::error()", "%s", buf); +# endif } if(breakOnError)