forum

Home / DeveloperSection / Forums / Getting the error “No launcher Activity Found”

Getting the error “No launcher Activity Found”

Mark Devid229014-Oct-2014
I am new to android and i already have added the activity but still getting the error "No Launcher activity found"
<uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="21"/>
 
<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme">
<activityandroid:name=".startingPoint"android:label="@string/app_name">
   <intent-filter>
       <actionandroid:name="android.intent.action.Main"/>
       <categoryandroid:name="android.intent.category.LAUNCHER"/>
   </intent-filter>
</activity>
 
</application>


Updated on 14-Oct-2014

Can you answer this question?


Answer

1 Answers

Liked By