为Google Play设置应用图标?

时间:2012-05-03 12:27:19

标签: android icons apk google-play

您好我正在尝试将蛇游戏上传到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>

编辑:顺便说一句,图标在模拟器和手机上都显示正常......

2 个答案:

答案 0 :(得分:1)

把:

android:icon="@drawable/icon"

下面:

<application android:label="Crazy Snake"
android:icon="@drawable/icon" > 
...
</application>

答案 1 :(得分:0)

把android:icon =&#34; @ drawable / icon&#34;内部应用程序标记。

如果还有其他应用程序标签,你还需要把android:icon =&#34; @ drawable / icon&#34;

查找清单中的空应用程序标记,如果您发现它们将其删除。