Missing Debuggable Attribute

This problem occurs when VisualGDB detects that your AndroidManifest.xml file is missing the "android:debuggable" attribute. To resolve it please do the following:

  1. Locate the AndroidManifest.xml file. For vs-android projects it is located in $(ProjectDir)\AndroidApk
  2. Find the Application node and set the android:debuggable attribute to "true":
     <application android:label="@string/app_name"
                  android:debuggable="true">
        <!-- Your activities are listed here -->
    </application>
  3. Rebuild your project to ensure that the changes take effect.