file - Eclipse(Android SDK) is showing the error "content not allowed in prolog " -


<application     android:icon="@drawable/sudoku111"     android:label="@string/app_name" >      <activity         android:name=".sudokugame1"         android:label="@string/app_name" >          <intent-filter>             <action android:name="android.intent.action.main" />              <category android:name="android.intent.category.launcher" />         </intent-filter>     </activity>     <activity         android:name=".about"         android:label="@string/about_title"         android:theme="@android:style/theme.dialog" />     <activity         android:name=".prefs"         android:label="@string/settings_title" />     <activity         android:name=".game"         android:label="@string/game_title" /> </application>  <uses-sdk android:minsdkversion="8" /> 

this program showing "content not allowed in prolog" error on 2nd line.....i've tried many times , many ways eliminate this....but couldn't so.....can tell me solution


Comments

Popular posts from this blog

Perl - how to grep a block of text from a file -

delphi - How to remove all the grips on a coolbar if I have several coolbands? -

javascript - Animating array of divs; only the final element is modified -