수고가 많으십니다 ㅎㅎ 초보 질문하나 부탁드려요 ㅎㅎ

manifest파일인데, 이 안에 하나의 application만 존재해야 한다고 알고있는데요^^

아래의 문구가 왜 잘못되서 에러메세지가 뜰까요 에러부분은 화살표로 지정했습니다.



<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="com.android.mw007"

      android:versionCode="1"
      android:versionName="1.0">
   <application android:theme = "@android:style/Theme_Light">   <--- 분명히 문구 내 application이 한개뿐인데 말이죠 ㅠㅠ
        <activity android:name=".mw007"
                  android:label="@string/app_name">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

    </application>
    <uses-sdk android:minSdkVersion="8" />

</manifest>