On using import android.hardware.camera2. I am getting import cannot be resolved. How to clear this problem. I tried everything mentioned in other solution but I am not able to fix this up. Please do help. Thanks in advance.
Import of android.hardware.camera2 cannot be resolved
Asked Answered
I want to use new api android.hardware.Camera2
There is no Java class in Android named android.hardware.Camera2
. There is a Java package named android.hardware.camera2
. You are welcome to use classes out of that Java package, such as android.hardware.camera2.CameraManager
.
"The import android. hardware. Camera2 cannot be resolved"
That is because there is no Java class in Android named android.hardware.Camera2
. There is a Java package named android.hardware.camera2
. You are welcome to use classes out of that Java package, such as android.hardware.camera2.CameraManager
, via import
statements like:
import android.hardware.camera2.CameraManager;
or even:
import android.hardware.camera2.*;
Thanks. My mistake was that I was using android.hardware.Camera2 in place of android.hardware.camera2. Thanks –
Moonfish
© 2022 - 2024 — McMap. All rights reserved.
android.hardware.camera2
itself is just a Java package; you import classes, not packages. If you literally haveimport android.hardware.camera2;
, you would need to change that toimport android.hardware.camera2.*;
or something. – Caduceus