Stijn Bastiaansen
Stijn Bastiaansen

Reputation: 1

Eclipse ANdroidNo Launcher activity found. The launch will only sync the application package on the device

I want to have homescreenactivity first. But eclipe is giving me this error: No Launcher activity found! The launch will only sync the application package on the device! What should I do?

android:versionCode="1"
android:versionName="1" >

<uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="15" />

<application
    android:icon="@drawable/myicon"
    android:label="@string/title_activity_home_screen"
    android:theme="@style/AppTheme" >
    <activity
        android:name="com.FootballChants.Soundboard"
        android:label="@string/title_activity_FootballChants" >
        <intent-filter>
            <action android:name="android.intent.action.VIEW" />

            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
    </activity>
             <activity
        android:name="com.FootballChants.HomeScreenActivity"
        android:label="@string/title_activity_home_screen" >
        <intent-filter   >
            <action android:name="android.intent.action.MAIN" />

            <catogory android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

</application>

Upvotes: 0

Views: 743

Answers (1)

kabuko
kabuko

Reputation: 36302

This is misspelled:

<catogory android:name="android.intent.category.LAUNCHER" />

It should be:

<category android:name="android.intent.category.LAUNCHER" />

Upvotes: 1

Related Questions