Hi,

I have a problem with the launcher icon when I update my application
from 1.0 to 1.1.
I have the right launcher icon in 1.0 but not in 1.1 just after an
update. But, if I reboot my devices, it's ok.

In the manifest, I just increase the android:versionCode and
android:versionName but didn't change anything about my android:icon.
But, I have new image in the folder drawable in 1.1.

Here a copy of my manifest:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android";
      package="blaaaaa"
      android:versionCode="2"
      android:versionName="1.1">

        <application
                android:label="@string/app_name"
                android:icon="@drawable/icon"
                android:allowClearUserData="true"
                android:debuggable="false" >
        <activity android:name=".blaaaaa" android:label="@string/
app_name" android:screenOrientation="portrait"
android:launchMode="singleTask" android:icon="@drawable/icon">
            <intent-filter android:icon="@drawable/icon">
                <action android:name="android.intent.action.MAIN" />
                <category
android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
                <activity android:icon="@drawable/icon" android:name=".blaaaaa"
android:screenOrientation="portrait" android:launchMode="singleTask"></
activity>
        <activity android:icon="@drawable/icon"
android:name=".blaaaab" android:screenOrientation="portrait"></
activity>
        <activity android:icon="@drawable/icon"
android:name=".blaaaac" android:screenOrientation="portrait"
android:launchMode="singleTask"></activity>
                <activity android:icon="@drawable/icon" android:name=".blaaaad"
android:screenOrientation="landscape"></activity>
        <activity android:icon="@drawable/icon" android:name=".blaaaae"
android:screenOrientation="portrait"></activity>
        <activity android:icon="@drawable/icon" android:name=".blaaaaf"
android:screenOrientation="portrait" android:launchMode="singleTask"></
activity>
        <activity android:icon="@drawable/icon" android:name=".blaaaag"
android:screenOrientation="portrait"></activity>
        <activity android:icon="@drawable/icon" android:name=".blaaaah"
android:screenOrientation="portrait"></activity>
        </application>

    <uses-sdk android:minSdkVersion="3" />
    <uses-permission android:name="android.permission.INTERNET" />

</manifest>

Thanks in advance.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to