嗨,我目前正在尝试将蛇游戏上传到 Google Play 市场,但我不断收到错误消息The icon path specified by the manifest is not in the apk
。
我没有使用 appcreator,我使用 eclipse 来编辑和签名/导出 apk。以下是清单的相关部分,但如果您需要查看更多信息,请告诉我。我在 res/drawable 文件夹中有一个 icon.png。有人可以告诉我我做错了什么吗?
<application android:label="Crazy Snake">
<activity android:icon="@drawable/icon"
android:name="Snake"
android:theme="@android:style/Theme.NoTitleBar"
android:screenOrientation="portrait"
android:configChanges="keyboardHidden|orientation">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<receiver android:name="com.Leadbolt.AdNotification" />
<receiver android:name="com.example.android.snake.BootReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
</application>
编辑:顺便说一句,模拟器和手机上的图标都很好......