Actually I studied myself quietly android. Did all sorts of activity layouts for them. The test in the emulator, which was in the android-sdk package (extras / intel).

Everything would be fine, but at one point it turned out somehow that when the application was started it did not start automatically in the emulator, and was not present in the menu.

Already tried and rearrange everything that is possible, but nothing helps. Maybe someone faced this problem. How did you decide?

I work with IDEA 14. It seems that there are no mistakes.

"C:\Program Files (x86)\android-sdk\tools\emulator.exe" -avd Nexus17 -netspeed full -netdelay none emulator: device fd:784 HAXM is working and emulator runs in fast virt mode creating window 40 81 335 557 emulator: emulator window was out of view and was recentered emulator: UpdateChecker: skipped version check Waiting for device. "C:\Program Files (x86)\android-sdk\tools\emulator.exe" -avd Nexus17 -netspeed full -netdelay none Device connected: emulator-5554 

Now I tried to just run the default helloworld

Manifest file Changed nothing.

 <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="ru.smirnov.Application" android:versionCode="1" android:versionName="1.0"> <uses-sdk android:minSdkVersion="17"/> <application android:label="@string/app_name" android:icon="@drawable/ic_launcher"> <activity android:name="MainActivity" android:label="@string/app_name"> <intent-filter> <action android:name="android.intent.action.MAIN"/> <category android:name="android.intent.category.LAUNCHER"/> </intent-filter> </activity> </application> </manifest> 
  • Is the emulator API version at least minSDK from the manifest? Activit main there is registered with the indication that it should be run? - Yuriy SPb
  • @Yuriy SPb, added the manifest file. If I'm not mistaken, the emulator version took 17. - I. Smirnov
  • "default helloworld" as I understand it works? - Yuriy SPb
  • @YuriySPb, that's the salt, that is not. There is no idea what happened, that the application has stopped in the emulator. - I. Smirnov
  • Does it work for real? Did you try to restart ADB? - JuriySPb

0