4

I need to build an Android app to capture panorama images similar to how Photo Sphere feature of Android 4.2+ Camera app.

I tried to look into the Android Open Source Project specifically at PanoramaModule, and downloaded the entire source of the Camera app, but failed to build it as an Android project in Eclipse because of missing references. For instance...

  • com.android.gallery3d
  • @layout/gl_root_group

Am I missing something here?

ala
  • 7,070
  • 13
  • 47
  • 54
  • Have you found the missing libraries? I got the code from Git Repository but having same errors you did. I also need documentation for code. Can i find documentation for this code. I need to know how FocusOverlayManager and PierRenderer classes work. – Thracian Feb 13 '17 at 21:10

1 Answers1

1

You can go to the root of the source code and use "make Camera" command to build that app.

Kit Yam Tse
  • 21
  • 1
  • 4