adamgf / react-native-opencv3

react-native-opencv3 wraps functionality from OpenCV Java SDK 3.4.4 + contrib modules and iOS OpenCV 3.4.1 + contrib modules for use in React-Native apps. Please enjoy!
Other
191 stars 64 forks source link

Could not find com.quickbirdstudios:opencv:3.4.4-contrib when install #45

Open pikann opened 2 years ago

pikann commented 2 years ago

Hello there,

In attempt to install react-native-opencv3 to my project. I saw this error

Execution failed for task ':app:mergeDebugAssets'.
> Could not resolve all files for configuration ':app:debugRuntimeClasspath'.
   > Could not find com.quickbirdstudios:opencv:3.4.4-contrib.
     Searched in the following locations:
       - https://repo.maven.apache.org/maven2/com/quickbirdstudios/opencv/3.4.4-contrib/opencv-3.4.4-contrib.pom

Seem the opencv-contrib was updated the implementation text and I cannot find version 3.4.4 in it https://github.com/quickbirdstudios/opencv-android

pikann commented 2 years ago

I fixed it by change the build.grandle of react native opencv3 to com.quickbirdstudios:opencv-contrib:3.4.5

master1st commented 1 year ago

3.4.5로 변경했지만 여전히 동일한 문제입니다.

el-fuego commented 2 months ago

Two more things you need to change:

For example:

...
android {
    compileSdkVersion 34
    ...
}

...

dependencies {
    ...
    implementation 'com.quickbirdstudios:opencv-contrib:3.4.15'
}