views:

45

answers:

1

Which version of Android is needed to create a working augmented reality application ?

+1  A: 

All that is needed for an augmented reality app is access to the camera's preview data. This has been available since Android API Level 1 (1.0). So technically, you can develop an augmented reality app on any version of Android.

See: Camera.PreviewCallback

colithium