Ok, this has me stumped - I've seen it on multiple phones (v 1.0 thru 1.5) but can't find any evidence anyone else seen the problem... so here we go:
When I install my app, the installer shows the package-name and a generic app icon. If the app is already installed, the installer will show the CORRECT app name and icon - same APK! It gets stranger... When I open up Menu->Settings->Applications->Manage Applications The initial list has a bunch of app names, with generic icons next to them... the icons then get fleshed out over a second or so. Then the spinner stops... I scroll down the list... A bunch of the apps still have the default icon (I know some do not have icons or even names, but the ones I am talking about here do) - if I open up *any* applications, and then hit the 'back' button **ALL** of the apps that had missing icons now have their correct icons displaying. Here is part of my manifest (with names changed to protect the guilty) (Note, I even put the Label/Icon on the main activity too... to no effect) <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.mememe.android.youyouyoul" android:versionName="1.0.8" android:versionCode="9"> <application android:label="@string/app_name" android:allowClearUserData="true" android:icon="@drawable/icon" android:description="@string/app_description" android:name="MyNameHere" android:debuggable="false" android:manageSpaceActivity=".activity.ManageSpace"> <activity android:name=".activity.AllAboutMe" android:label="@string/app_name" android:icon="@drawable/icon" android:launchMode="singleTop"> <intent-filter android:icon="@drawable/icon" android:label="@string/app_name"> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> <intent-filter> <action android:name="android.intent.action.VIEW" /> <category android:name="android.intent.category.DEFAULT" / > <data android:mimeType="vnd.android.cursor.item/ vnd.mememe.youyouyou.item" /> </intent-filter> </activity> . . . <uses-sdk android:minSdkVersion="2"></uses-sdk> </manifest> On a new install, the installer shows the app name as "com.mememe.android.youyouyou...." (too long for screen), with the default 'screen-with-a-cog-in-front-of-it' icon. On an upgrade, the installer shows the app name as whatever is in "@string/app_name", with the icon present in "@drawable/icon" Anyone with any ideas/thoughts? Thanks Doug --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

