AndroidManifest.xml (the Android Manifest) is the place where an app announces information that the system, Google Play, and other apps might need to know. For example, Goldgesture requires a front-facing camera and permission to use it (a license to shoot, one might say). Goldgesture also expects to run in landscape mode, regardless of the physical orientation of the phone, because OpenCV's camera preview always uses the camera's landscape dimensions (OpenCV's Android documentation does not indicate whether this behavior is intended. Perhaps future versions will provide better support for portrait orientation). To specify these requirements, edit app/src/main/AndroidManifest.xml to match the following sample:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android...