Android Launch From Eclipse Not Working Properly Without Error Message
Solution 1:
go to the run configurations of your project by right clicking on you project ...then go to target ...in that there will be a checkbox called wipe user data. check whether its checked or not. If not then enable it. This will wipe out the previous installed apps from the phone and reinstall your app each time you run you project so that you don't need to restart your emulator each time.
Hope this helps.
Solution 2:
Have you enabled Allow installation of non-Market applications in your new phone? If not check that check box you might be able to install your application.
Solution 3:
Can you try Restarting the adb Server. You can do this by two ways. one is from the eclipse and other is from the command prompt.
Eclipse: Open the sub Window 'devices'. In that window click on the right top triangle symbol where you will be having the reset adb option.
Command Prompt:
Open Command prompt. Move to the android sdk path. Move to the platform tools.Type below commands.
adb kill-server
adb start-server
You can also try installing the application after uninstalling the previous existing application.
Post a Comment for "Android Launch From Eclipse Not Working Properly Without Error Message"