icon not working Please help

I just published my first app for the Droid. The problem is I cant seem to get my icon to show up? Just the stock droid icon. Do I need to have it in my main.lua file? Right now it is not in the main.lua. But it works fine for the iPhone version. Any advice?

Thanks! [import]uid: 10062 topic_id: 4599 reply_id: 304599[/import]

You don’t put it in the main.lua file.


Application Icons

Icon files named Icon-hdpi.png, Icon-mdpi.png, and Icon-ldpi.png will be copied into the .apk during the build, if they are available in your project folder. These icons should be created in the standard Android icon sizes (72x72, 48x48, 36x36) and follow the Android Icon Design Guidelines, which are available at http://developer.android.com/intl/de/guide/practices/ui_guidelines/icon_design.html.

If you are building for Android 1.6, your project folder must also contain an icon file named “Icon.png” that is a copy of"Icon-hdpi.png", in addition to the resolution-specific icon image files.
[import]uid: 9371 topic_id: 4599 reply_id: 14495[/import]

Thanks dweezil. I created those files and did a re-build. But now when I try to upload the new version I get this version(1) in AndroidManifest.xml need to be higher than the previous(1). What?I tried changing it in the build but that doesnt seem to work. Any further advice?

Thanks again! [import]uid: 10062 topic_id: 4599 reply_id: 14544[/import]

Make sure there are no extra commas in your build.settings file.

Example:
[lua]settings = {
android = {
versionCode = “1”,
versionName = “One”
}
}[/lua]
[import]uid: 11024 topic_id: 4599 reply_id: 14550[/import]

Yep that did it. I had it in the config.lua file.

Thanks to both for the help!! [import]uid: 10062 topic_id: 4599 reply_id: 14552[/import]