Mertcan Ekiz
Mertcan Ekiz

Reputation: 711

Eclipse ADB not launching

I'm trying to run an application through ADB using Eclipse. However the application doesn't launch on my phone. Here's the log from Android console:

[2014-02-27 22:31:52 - HelloWorld-android] ------------------------------
[2014-02-27 22:31:52 - HelloWorld-android] Android Launch!
[2014-02-27 22:31:52 - HelloWorld-android] adb is running normally.
[2014-02-27 22:31:52 - HelloWorld-android] Performing com.teddygaming.helloworld.MainActivity activity launch
[2014-02-27 22:31:52 - HelloWorld-android] Uploading HelloWorld-android.apk onto device '4790050082a3106c'
[2014-02-27 22:31:53 - HelloWorld-android] Installing HelloWorld-android.apk...
[2014-02-27 22:32:03 - HelloWorld-android] Success!
[2014-02-27 22:32:03 - HelloWorld-android] Starting activity com.teddygaming.flappymuhittin.MainActivity on device 4790050082a3106c

There doesn't seem to be any error here, but it just doesn't launch.

I'm using Ubuntu 12.04 LTS, with adt-bundle installed, using OpenJDK 7. USB Debugging is enabled on my phone. I have edited /etc/udev/rules.d/51-android.rules and added my vendor id. I've tried restarting adb server but that didn't work either. Please help me with this, I can't understand why it doesn't work.

Upvotes: 0

Views: 113

Answers (2)

Molimo
Molimo

Reputation: 91

Can you launch in emulators? Also, I think you've already done this, but make sure Security->Unknown Sources is checked on your phone.

Upvotes: 0

StarDust
StarDust

Reputation: 855

May be it's crashing. Check the logcat log. Also print a line in the first line of onCreate() of com.teddygaming.flappymuhittin.MainActivity.

Upvotes: 1

Related Questions