我正在使用Eclipse - 我导出我的项目并签名。但后来我得到了这个错误。
[SO]不允许我上传截屏
错误是“上传失败:您需要在APK中添加图标”
我的所有drawables文件夹中都有名为icon.png的文件。我不确定是什么导致了这个错误。
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/Theme.Sherlock.Light" >
ic_launcher是我所有可绘制文件夹中的图标
编辑以澄清: 在我的清单中,我有上面的代码。 在我所有的可绘制文件夹中,我有一个名为ic_launcher的图标png(第一次上传失败时我也添加了icon.png)
答案 0 :(得分:3)
您的图标需要命名为:“ic_launcher.png”not icon.png。或者,您可以将清单更改为指向您想要的可绘制名称的任何内容。
答案 1 :(得分:1)
使用此行
android:icon="@drawable/ic_launcher"
Android希望找到名为“ic_launcher.something”的图标,其中某些内容是有效的图片格式,例如.png或.jpg
你提到你的图标名为“icon.png”
更改其中一个,它应该有效。
答案 2 :(得分:0)
You need to add an icon to your APK while uploading App to google play
希望这也有助于其他人。答案 3 :(得分:0)
我也遇到了同样的问题。问题现在解决了。
我希望以上几点可以解决您的问题。