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:
- Locate the AndroidManifest.xml file. For vs-android projects it is located in $(ProjectDir)\AndroidApk
- 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>
- Rebuild your project to ensure that the changes take effect.