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

c++ - Function signature as a function template parameter -

algorithm - What are some ways to combine a number of (potentially incompatible) sorted sub-sets of a total set into a (partial) ordering of the total set? -

How to call a javascript function after the page loads with a chrome extension? -