0

I updated my latest library in Eclipse. Now it's showing this error in appCompat:

[2015-07-06 18:10:52 - NewDemo] E:\Workspace3\appcompat_v7\res\values-v21\themes_base.xml:136: error: Error: No resource found that matches the given name: attr 'android:colorPrimary'.
[2015-07-06 18:10:52 - NewDemo] E:\Workspace3\appcompat_v7\res\values-v21\themes_base.xml:137: error: Error: No resource found that matches the given name: attr 'android:colorPrimaryDark'.
[2015-07-06 18:10:52 - NewDemo] E:\Workspace3\appcompat_v7\res\values-v21\themes_base.xml:146: error: Error: No resource found that matches the given name: attr 'android:windowElevation'.
[2015-07-06 18:10:52 - NewDemo] E:\Workspace3\appcompat_v7\res\values-v21\themes_base.xml:150: error: Error: No resource found that matches the given name: attr 'android:windowElevation'.

I have the following code in my Manifest:

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

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name=".MainActivity"
            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>

</manifest>
Julian E.
  • 4,687
  • 6
  • 32
  • 49
Kumar
  • 969
  • 2
  • 22
  • 56

1 Answers1

0

Try to delete your .eclipse in users folder and restart eclipse

MaxExplode
  • 1,977
  • 2
  • 17
  • 27