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.
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.*;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With