tags:

views:

671

answers:

1

Hi,Can any one tell me which version of android sdk contains the class " android.hardware.CameraDevice " .At present i m using android-sdk-windows-1.5_r1. I want to capture image from the web cam. Please help me.

regards, s.kumaran.

+2  A: 

CameraDevice is from a pre-1.0 Android API. You should be the android.hardware.Camera class instead. See the included API demos too.

http://developer.android.com/reference/android/hardware/Camera.html

Dave