My Android project no longer starts in the emulator. On the console, it says loading apk and installing, but it never says Starting Activty. I also put a breakpoint on the first line of code, but it never gets there.
Ted
My Android project no longer starts in the emulator. On the console, it says
Share
Looks like its facing some problem while installing. Mostly when you face a problem with installations it might have something to do with signing of the APK. There is a chance that, there is a copy already installed on your emulator with different signature. In that case android will not allow you to override it with new one.
So suggestions:
1. Check if there is an APK. Just go through list of applications
2. If there is one, uninstall it by ‘adb uninstall ‘
3. Try again
Hope this helps.