My android project no longer starts in emulator
My Android project no longer starts in the emulato开发者_开发知识库r. 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
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.
Perhaps your manifest file is not correct? A lot of problems can be traced to that file. Also, you should clean your project as this can also solve a lot of strange problems.
Without any code or examples I can't say any better
精彩评论