I have the following piece of code in my AndroidManifest.xml
file in which I want to comment out a single line (for quick testing purposes). By choosing the AndroidStudio
-comment function I get the following:
<application
android:allowBackup="true"
android:icon="@mipmap/myicon"
android:label="@string/app_name"
android:supportsRtl="true"
<!--android:theme="@style/AppTheme"-->
android:theme="@style/ThemeOverlay.AppCompat.ActionBar" >
However, this creates a compilation error:
Error:Element type "application" must be followed by either attribute specifications, ">" or "/>".
Is there a simple way to comment out a (block of) line(s), or should I open an external text editor and copy-and-paste the original (block of) line(s) to that external text editor?