I finished my application and its run good in eclipse simulator but it couldn’t installed in my device and my friends’ devices also. I open the apk file from my drop box and then I couldn’t find the logo of my application when the apk uploading finished the run button is invisible and cant click on it and the done button visible, I can see my application in my setting> applications> manage applications > downloaded.. but can only uninstall it and can’t see in my applications page . The whole application didn’t installed but the segmentation code by each my friend installed and run on device correctly.? My application’s size is 29 MB
1- [2012-05-10 00:26:05 – aya] Android Launch!
2- [2012-05-10 00:26:05 – aya] adb is running normally.
3- [2012-05-10 00:26:05 – aya] No Launcher activity found!
4- [2012-05-10 00:26:05 – aya] The launch will only sync the application package on the device!
5- [2012-05-10 00:26:05 – aya] Performing sync
6- [2012-05-10 00:26:05 – aya] Automatic Target Mode: using device ’37C708442409657′
7- [2012-05-10 00:26:05 – aya] Uploading aya.apk onto device ’37C708442409657′
8- [2012-05-10 00:26:29 – aya] Installing aya.apk…
9- [2012-05-10 00:26:44 – aya] Success!
10- [2012-05-10 00:26:44 – aya] \aya\bin\aya.apk installed on device
11- [2012-05-10 00:26:44 – aya] Done!`
From line 3 of your log (3- [2012-05-10 00:26:05 – aya] No Launcher activity found!) it seems to me that you are missing the following activity declaration in your app’s AndroidManifest.xml
You may want to read Android Application Fundamentals for more information.
Also you may have to enable the “Allow Fake Locations” settings on your device if you have not signed your apk with a non debug key or you are distributing it from non market locations but this is another story…
Hope this helps…