What does the ic_launcher-web.png in my project ro

2020-06-06 08:07发布

Unbelievably enough, I couldn't find an answer when Googling for this very basic question!

I noticed that since I upgraded from Eclipse Helios to Eclipse Juno and updated the Android SDK, Eclipse places a file called ic_launcher-web.png in the project root whenever I create a new Android project. The file is the same as the application icon selected in the project creation dialog, but what does it do? As mentioned, it's in the project root, not in any of the /res/ folders. So is it included in the finished .apk file, and what is it's purpose?

4条回答
男人必须洒脱
2楼-- · 2020-06-06 08:23
forever°为你锁心
3楼-- · 2020-06-06 08:25

It's for the Play Store, which accepts 512x512 high-resolution icons:

  • High Resolution Application Icon (Required):
    • Use: In various locations in Google Play.
    • Specs: 512x512, 32-bit PNG with alpha; Max size of 1024KB.

-- Google Support

(A more tutorial like explanation can be found here.)

It is not used in your actual app or the launcher, so it is not packaged in the APK.

查看更多
相关推荐>>
4楼-- · 2020-06-06 08:31

If you keep this file make sure to change it to duplicate your regular launcher file. You manually add the regular launcher file to the play site when submitting your project anyway so the extra web launcher file may not be needed. My first project never had one.

查看更多
姐就是有狂的资本
5楼-- · 2020-06-06 08:36

This is the icon for the google play store. You need to provide a 512 x 512 icon.

查看更多
登录 后发表回答