-1

The app I'm currently developing works perfectly on the simulator.

When plugging in my Android device and press "run", nothing happens on the device.

We have done a lot of code and don’t want to restart everything, we can run different project but not this one. Why ?

On the Emulator it works fine and we got no problems.

The app gets installed on the phone if we look in Settings->program handler but I can’t find it in all programs.

njzk2
  • 38,969
  • 7
  • 69
  • 107
  • Have you tried [installing](http://stackoverflow.com/a/3480235/1960180) the program and [running](http://stackoverflow.com/questions/4567904/how-to-start-an-application-using-android-adb-tools) it using ADB? – Aaron D Feb 19 '15 at 15:55

1 Answers1

1

It seems you forgot: "android.intent.category.LAUNCHER" in AndroidManifest, this property add your app (Icon) in list of app.

<activity android:name="com.test.MainActivity">
    <intent-filter>
        <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.LAUNCHER" />
    </intent-filter>
</activity>
LaurentY
  • 7,495
  • 3
  • 37
  • 55