Import of android.hardware.camera2 cannot be resolved

Nandan A picture Nandan A · Aug 23, 2015 · Viewed 12.2k times · Source

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.

Answer

CommonsWare picture CommonsWare · Aug 23, 2015

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.*;