How to open only default camera without showing chooser in Android

How to open only default camera without showing chooser in Android

In some cases you might want to open only default camera of the device without showing chooser of 3rd party camera applications. You can try following code, its working perfectly fine in my case. PackageManager packageManager = context.getPackageManager(); List<ApplicationInfo> list = packageManager .getInstalledApplications(PackageManager.GET_UNINSTALLED_PACKAGES); for (int n = 0; n <…continue reading →
Unity3D Scripting Optimization Tips

Unity3D Scripting Optimization Tips

The following tips are not meant to be absolutes but rather guidelines for Unity users that want to learn how to make a well-performing game. Profiler First. There is no such thing as a list of boxes to check that will ensure your project runs smoothly. Don't spend time trying…continue reading →