Reputation: 5469
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.
Upvotes: 2
Views: 2260
Reputation: 6104
CameraDevice is from a pre-1.0 Android API. You should import the android.hardware.Camera
class instead. See the included API demos too.
http://developer.android.com/reference/android/hardware/Camera.html
Upvotes: 3
Reputation: 2268
It is not an sdk-version who let you use the camera, but just a line in your manifest
<uses-feature android:name="android.hardware.camera" />
http://developer.android.com/guide/topics/manifest/uses-feature-element.html
Upvotes: -2