我一直在尝试使用新的 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}"
我究竟做错了什么?