- Oct 30, 2009
- 939
- 34
- 28
I'm working on developing my first App and I am having an issue. I cannot get the launcher to show the icon I want no matter what I do and what tutorial I follow. Does anyone have a good source on how to specify the launcher icon?
The following is my ApplicationManifest
The following is my ApplicationManifest
Code:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.runtsoft.yeahright"
android:versionCode="1"
android:versionName="1.0"
android:icon="@drawable/icon">
<application android:label="@string/app_name">
<activity android:name=".yeahright" android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<!-- The application's publisher ID assigned by AdMob -->
<meta-data android:value="xxxxxxxxxxxxxxx" android:name="ADMOB_PUBLISHER_ID" />
</application>
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-feature android:name="android.hardware.camera" />
<uses-feature android:name="android.hardware.camera.autofocus" />
</manifest>
