JavaCV + Android Studio + gradle- possible?

前端 未结 7 1093
难免孤独
难免孤独 2021-01-31 21:19

I\'m trying use JavaCV with Android Studio and Gradle. I wrote such code fragment:

   repositories {
    mavenCentral()
    maven {
        url \"http://maven2.j         


        
7条回答
  •  清酒与你
    2021-01-31 21:49

    I faced this issue on Windows 7 x64. Here is a section from my gradle.build file which resolved the problem:

    compile("org.bytedeco:javacv:0.11")
    compile("org.bytedeco.javacpp-presets:opencv:2.4.11-0.11:windows-x86_64")
    compile("org.bytedeco.javacpp-presets:ffmpeg:2.6.1-0.11:windows-x86_64")
    

提交回复
热议问题