Error occurs in Android Studio Native C++ [Solved]
dadin852 opened this issue · 1 comments
dadin852 commented
I'm trying to use the opencv-mobile in Native C++ project, but got this error :
CMake Warning at opencv-mobile-4.6.0-android/sdk/native/jni/abi-arm64-v8a/OpenCVConfig.cmake:105 (message):
Minimum required by OpenCV API level is android-24
Call Stack (most recent call first):
opencv-mobile-4.6.0-android/sdk/native/jni/OpenCVConfig.cmake:44 (include)
CMakeLists.txt:6 (find_package)
CMake Error at CMakeLists.txt:6 (find_package):
Found package configuration file:
D:/DAVID/AndroidStudioProjects/MyJNI/app/src/main/jni/opencv-mobile-4.6.0-android/sdk/native/jni/OpenCVConfig.cmake
but it set OpenCV_FOUND to FALSE so package "OpenCV" is considered to be
NOT FOUND.
dadin852 commented
Finally, I found the solution here :
https://forum.opencv.org/t/error-opencv-is-considered-to-be-not-found/4040/6?u=dadin852
[Solution]
Change the minSdk in build.gradle from default 21 to 24 !
android {
namespace 'com.example.myjni'
compileSdk 33
defaultConfig {
applicationId "com.example.myjni"
minSdk 24