Android Emulator Loads But Not The Program?
Solution 1:
I had this problem for a while, but I found that my emulator target was too high for my application. Check that your emulator's API level is <= android:minSdkVersion in your manifest . Not a very helpful error message though is it?!
Solution 2:
emulator is not perfect... try going to the application menu i start it from there... i have noticed sometimes it does not show up on its own.
Solution 3:
Starting activity com.example.android.jetboy.JetBoy on device emulator-5554
line of logcat says that your avd tried to start your application. you can post more details from logcat. Restart your emulator, clean and build your project and see what happens.
Solution 4:
I had the same error while I was working with a new App which used SQLite.
Anyways, the issue was that even after you close your Eclipse and Emulator.. in Task Manager the process adb.exe or abd.exe*32 was still running.
Steps: 1. Close eclipse and emulator. 2. Kill the process adb.exe or abd.exe*32. 3. Start your eclipse, clean build your app once and its almost like new.
Happy coding.
Post a Comment for "Android Emulator Loads But Not The Program?"