Reputation: 1677
getting error:
An error has occurred. See error log for more details. java.lang.NullPointerException
when I attempt to edit this file in my eclipse Android sdk project.
Not seeing anything in LogCat or the Console.
I need to update this file to rename the Project.
Upvotes: 1
Views: 1278
Reputation: 1680
Go to the XML/XML Files/Editor preference page and turn off the "Use inferred grammar..." setting.
Upvotes: 1
Reputation: 5020
Have you looked at this question? According to it, the application's name is set to be the name of any activity that declares
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
The app_name, in this case, may not be of any significance, because the name of the application is being set by the component activities of the application, rather than by the application itself.
Upvotes: 1