I wrote some android application using Eclipse. I found apk file in the bin directory.

When i connect USB cable between the cell phone and the computer - the application is running. But when i disconnect the USB cable from the cell phone - and i trying to launch the application from the cell phone i get message

        "Waiting for debugger" 
        "Application ( process name .. ) is waiting for the debugger to attach" 

So, How can i create apk ( installation file ) for using with no debug ?

link|improve this question

1  
And please use search before asking, this is common question. – Dmytro Danylyk Dec 8 '11 at 10:53
feedback

3 Answers

up vote 2 down vote accepted

Is there a Debug.waitForDebugger() somewhere in your code?

Here are some tricks... http://groups.google.com/group/android-developers/browse_thread/thread/bdf61367c8649f4a?pli=1

Seen some indication that there is a global debug flag in the phone that might have got stucked restarting the phone might help.

link|improve this answer
no waitForDebugger in the code ... – Yanshof Dec 8 '11 at 11:03
feedback

File - Export - Android Application

link|improve this answer
feedback

If you like to release your app to the public, here you can find step by step info on how to do it.

Include how to create the apk file, from the link:

To create a signed and aligned .apk in Eclipse:

  1. Select the project in the Package Explorer and select File > Export.

  2. Open the Android folder, select Export Android Application, and click Next. The Export Android Application wizard now starts, which will guide you through the process of signing your application, including steps for selecting the private key with which to sign the .apk (or creating a new keystore and private key).

  3. Complete the Export Wizard and your application will be compiled, signed, aligned, and ready for distribution.

link|improve this answer
Are comments that just contain links elsewhere really “good comments”? – BrainCrash Dec 9 '11 at 15:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.