forum

home / developersection / forums / getting the error “no launcher activity found”

Getting the error “No launcher Activity Found”

Mark Devid 2448 14-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" >
<activity android:name=".startingPoint" android:label="@string/app_name">
   <intent-filter>
       <action android:name="android.intent.action.Main" />
       <category android:name="android.intent.category.LAUNCHER" />
   </intent-filter>
</activity>
 
</application>


Updated on 14-Oct-2014
Can you answer this question?

Answer

1 Answers

Liked By