1

我一直在尝试使用新的 CameraX 库。其他一切正常,但我无法像文档中所说的那样导入供应商扩展。

https://developer.android.com/training/camerax/vendor-extensions

import androidx.camera.extensions.BokehExtender;

这显示“无法解析符号扩展”

这是我的 build.gradle

def camerax_version = "1.0.0-alpha03"
    implementation "androidx.camera:camera-core:${camerax_version}"
    implementation "androidx.camera:camera-camera2:${camerax_version}"

我究竟做错了什么?

4

2 回答 2

0

请为供应商扩展添加 gradle 依赖项:

implementation "androidx.camera:camera-extensions:1.0.0-alpha01"
于 2019-09-05T14:29:53.903 回答
0

我们还不能使用相机扩展库。但是,发布它的更改已在 7 月 15 日提交。我们也许可以在下一个版本中使用它。 https://android.googlesource.com/platform/frameworks/support/+/8289a725a508a5b43da450e596612f9cb8c5624b%5E%21/#F1

如果你只是想试试,你可以试试Testing modified AndroidX Libraries to in your Apphttps://android.googlesource.com/platform/frameworks/support/+/androidx-master-dev

于 2019-07-24T07:10:23.880 回答