views:

177

answers:

2

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.

+1  A: 

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.

quanticle
A: 

Found it.. I have to modify it with an XML editor. Thanks.

cyberpine