Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

no resource found that matches the given name

This:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
  package="de.androidbuch.rechner"
  android:versionCode="1"
  android:versionName="1.0">

  <uses-sdk android:minSdkVersion="7"></uses-sdk>
<application android:icon="@drawable/icon" android:label="@string/app_name"
android:theme="@android:style/Theme.Light">

    <activity android:name=".FormularActivity"
        android:label="@string/app_name">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

is my AndroidManifest.xml and in lines 8 & 11 I get the error:

no resource found that matches the given name(at "label" with value "@string/app_name")

no resource found that matches the given name(at "label" with value "@string/app_name")

This is really strange and I did not move the values Folder anywhere.

like image 767
sam Avatar asked Jan 19 '11 14:01

sam


3 Answers

Did you check to ensure that you have the string resource defined in res/values/strings.xml?

<string name="app_name">"My App"</string>

Sometimes, I've noticed eclipse will also throw errors that are hard to track if you have any .xml files with errors. I don't think the parser recovers well and sometimes the errors you get can be misleading.

like image 50
Jerry Brady Avatar answered Nov 14 '22 00:11

Jerry Brady


One Reason Can Be as in my case a bug in the string GUI when you add and delete items in some sequence

solution: simply open the strings.xml in the XML mode not GUI you will find it different and has obvious not valid extra texts pasted around or at the beginning ; although it does not give an error on the file strings.xml fix them and then clean and run

like image 38
shareef Avatar answered Nov 13 '22 23:11

shareef


I also had the same error with my images .. Just rename the extension from ".png" or whatever you have to ".jpg" then they work fine after cleaning the project and re compiling it.

like image 1
gyadav Avatar answered Nov 14 '22 01:11

gyadav