How to create a camera application separately from AOSP?

I need to create an Android application for capturing panoramic images, similar to the photosphere function of the Android 4.2+ application for the camera.

I tried to study the Android Open Source project specifically in PanoramaModule and downloaded the entire source application for the camera , but could not create it as an Android project in Eclipse due to missing links. For instance...

  • com.android.gallery3d
  • @ layout / gl_root_group

Did I miss something?

+4
source share
1 answer

You can go to the root of the source code and use the โ€œmake cameraโ€ command to create this application.

+1
source

Source: https://habr.com/ru/post/1502172/


All Articles