이클립스로 안드로이드 프로젝트를 생성했는데, res>AndroidManifest.xml에 다음과 같이 자꾸 에러가 뜹니다.
===========================================================================
package="com.example.new1"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="21"
android:targetSdkVersion="21" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
</application>
</manifest>
==============================================================================
[2014-12-12 13:40:26 - New1] C:\Androidapp\workspace\New1\AndroidManifest.xml:10: error: Error: No resource found that matches the given name (at 'theme' with value '@style/AppTheme').
============================================================================
1. 프로그래밍쪽에 왕초보입니다. 연습하려고 해도 프로젝트 생성시 부터 에러가 발생하네요. 도와주세요.ㅠㅠ
2.비슷한 질문이 있어 제안의견을 훓어보았는데, [지금 해당 에러메세지는 styles.xml에 AppTheme라는 이름의 리소스가 없어서 나오는것 같습니다. styles.xml에 AppTheme를 정의해 주세요.
ex) <style name="AppTheme" parent="테마지정"></style>]라는 제안이 있는데 어디서 이 사항을 실행해야 하는지를 모르겠습니다.