Could not find com.serenegiant:common:4.1.1

简介: Could not find com.serenegiant:common:4.1.1
  • 错误
Could not find com.serenegiant:common:4.1.1.
Required by:
    project :app > project :libusbcamera
Search in build.gradle files
  • 解决办法

下载common.aar,可以从这时下载:

https://download.csdn.net/download/xw245184020/12414825

新建aars目录,把aar放进去。

修改build.gradle

dependencies {
    ......
    // add this
    compile fileTree(include: '*.aar', dir: 'aars')
}
目录
相关文章
|
3天前
|
IDE 开发工具 Android开发
Couldn‘t get post build model. Module:UpdateService_0804.main Variant: debugOpen logcat panel fo
Couldn‘t get post build model. Module:UpdateService_0804.main Variant: debugOpen logcat panel fo
11 0
|
5月前
Error: Cannot find module ‘express‘
Error: Cannot find module ‘express‘
|
7月前
|
JavaScript Cloud Native Go
Error: Cannot find module ‘webpack/bin/config-yargs‘ at Function.Module._resolveFilename (intern
Error: Cannot find module ‘webpack/bin/config-yargs‘ at Function.Module._resolveFilename (intern
33 0
Could not find com.serenegiant:common:4.1.1
Could not find com.serenegiant:common:4.1.1
199 0
Package sqlite3 was not found in the pkg-config search path.add the directory containing `sqlite3.pc
Package sqlite3 was not found in the pkg-config search path.add the directory containing `sqlite3.pc
143 0
Package ffnvcodec was not found in the pkg-config search path
Package ffnvcodec was not found in the pkg-config search path
125 0
Module build failed: Error: Cannot find module ‘node-sass‘ Require stack报错解决
Module build failed: Error: Cannot find module ‘node-sass‘ Require stack报错解决
408 0
Module build failed: Error: Cannot find module ‘node-sass‘ Require stack报错解决
|
算法
On the Correct and Complete Enumeration of the Core Search Space
在之前的文章中我们讨论了基于graph的DP-based算法,来解决join ordering的枚举问题。 这些DP算法通过join predicate描述的连通性,解决了枚举可能的表组合问题,但join graph本身(即使hypergraph)是无法完整的描述join语义的,因为连通边本身无法描述不同类型的join语义,例如left outer join/semi join/anti join...,因此即使找到了所谓的csg-cmp-pair,也不一定是有效的plan。 这篇paper讨论的就是这个问题,当枚举出一个csg-cmp-pair (S1 o S2),如何判断这是有效的join
387 0
On the Correct and Complete Enumeration of the Core Search Space
Module build failed: ReferenceError: Unknown plugin “import” specified in “base” at 0 Ask Question
https://stackoverflow.com/questions/42731610/module-build-failed-referenceerror-unknown-plugin-import-specified-in-base ...
3938 0