android - I can't launch an application with AVD (No Launcher activity found!) -
so, i've been searching 2 hours, , still don't find answer problem.
i run android project (eclipse luna) avd, emulator works here logs:
android launch!
adb running normally.
no launcher activity found!
the launch sync application package on device!
performing sync
automatic target mode: preferred avd 'test1' not available. launching new emulator.
launching new emulator virtual device 'test1'
new emulator found: emulator-5554
waiting home ('android.process.acore') launched...
home on device 'emulator-5554'
uploading findthem.apk onto device 'emulator-5554'
installing findthem.apk...
success!
\findthem\bin\findthem.apk installed on device
done!
i know may problem in androidmanifest, i've checked, , code ok:
<application android:allowbackup="true" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/apptheme" > <activity android:name="com.app.findthem.mainactivity" android:label="@string/app_name" > <intent-filter> <action android:name="android.intent.action.main"/> <category android:name="android.intent.action.launcher"/> </intent-filter> </activity>
(and it's followed others activity's).
i don't it, can me please? sorry english, i'm french native. , sorry if answer post somewhere, searched , found nothing solve issue.
thanks reading , helping.
<category android:name="android.intent.action.launcher"/>
should be
<category android:name="android.intent.category.launcher" />
Comments
Post a Comment