Note that there are some explanatory texts on larger screens.

plurals
  1. POAndroidManifest does not generate launcher icon
    text
    copied!<p>My AndroidManifest.xml file does not create a launcher icon as it should.</p> <p>The XML is as:</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.jbrooksuk.iTunesTweet" android:versionCode="1" android:versionName="1.0"&gt; &lt;application android:icon="@drawable/itticon" android:label="@string/app_name" &gt; &lt;activity android:name=".iTunesTweet" android:label="@string/app_name"&gt; &lt;intent-filter&gt; &lt;action android:name="android.intent.action.MAIN" /&gt; &lt;category android:name="android.intent.category.LAUNCHER" /&gt; &lt;category android:name="com.jbrooksuk.iTunesTweet" /&gt; &lt;/intent-filter&gt; &lt;/activity&gt; &lt;activity android:name=".OAUTH" android:label="@string/oauth_name"&gt; &lt;intent-filter&gt; &lt;action android:name="android.intent.action.VIEW" /&gt; &lt;category android:name="android.intent.category.BROWSABLE" /&gt; &lt;data android:scheme="itt" android:host="twtr" /&gt; &lt;/intent-filter&gt; &lt;/activity&gt; &lt;receiver android:name="com.jbrooksuk.iTunesTweet.AndroidMusicReceiver" android:exported="true" android:enabled="true"&gt; &lt;intent-filter&gt; &lt;action android:name="com.android.music.metachanged" /&gt; &lt;action android:name="com.android.music.playstatechanged" /&gt; &lt;action android:name="com.android.music.playbackcomplete" /&gt; &lt;/intent-filter&gt; &lt;/receiver&gt; &lt;receiver android:name="com.jbrooksuk.iTunesTweet.HeroMusicReceiver" android:exported="true" android:enabled="true"&gt; &lt;intent-filter&gt; &lt;action android:name="com.htc.music.metachanged" /&gt; &lt;action android:name="com.htc.music.playbackcomplete" /&gt; &lt;action android:name="com.htc.music.playstatechanged" /&gt; &lt;/intent-filter&gt; &lt;/receiver&gt; &lt;service android:name="com.jbrooksuk.iTunesTweet.iTTService" android:enabled="true" android:exported="false"&gt; &lt;intent-filter&gt; &lt;action android:name="com.jbrooksuk.iTunesTweet.playstatechanged" /&gt; &lt;/intent-filter&gt; &lt;/service&gt; &lt;/application&gt; &lt;uses-sdk android:minSdkVersion="3" android:targetSdkVersion="4" /&gt; &lt;uses-permission android:name="android.permission.INTERNET" /&gt; &lt;/manifest&gt; </code></pre> <p>The icon should take the user to the main class; com.jbrooksuk.iTunesTweet but no icon is even created.</p> <p>When I run the code from ADB the layout is displayed though!</p> <p>James</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload