Hi,
I need to open camera from NDK to enhance the performances and I have search several days in internet. But nothing get help.
Does anyone know how to open the camera using NDK?
Hi,
I need to open camera from NDK to enhance the performances and I have search several days in internet. But nothing get help.
Does anyone know how to open the camera using NDK?
Native code is primarily useful when you have an existing native codebase that you want to port to Android, not for "speeding up" parts of a Java app.
Avoid jumping to the NDK because you think it'll improve performance. Stick to Java and use the profiler to work out bottlenecks there.
The Google website says this:
"The Android NDK is a companion tool to the Android SDK that lets Android application developers build performance-critical portions of their apps in native code."
So rest assured that use of NDK IS for performance improvement!