Naming my application in android
        Posted  
        
            by Sephy
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Sephy
        
        
        
        Published on 2010-03-14T22:25:33Z
        Indexed on 
            2010/03/14
            23:05 UTC
        
        
        Read the original article
        Hit count: 334
        
Hi,
I think i'm getting senile because I was convinced that to give a name to your application, you had to fill this part of the manifest :
<application android:icon="@drawable/icon"  android:label="MyApplicationName">
However for a reason I don't understand, my application gets the name of my first activity, in which I load data, henceforce, It is called "Loading"...(defined as follows in the manifest)
<activity android:name="AccueilSplash" android:label="Loading">
Any idea why that is?
© Stack Overflow or respective owner