I have tried installing my .apk file on device but it stops saying Not Installed . I have checked minsdk and other issues but still getting same error. What else should i try?

link|improve this question

67% accept rate
There's usually some information on LogCat which can be helpful. – harism Jan 16 at 10:23
Post your lagcat message – Deepak Jan 16 at 10:30
How are you installing? Are you running it through eclipse, using the android command line tool or downloading it through the browser? – aspartame Jan 16 at 10:38
No, just installing the apk file onto the device! – Navdroid Jan 16 at 10:44
That's not really answering my question ;) How are you getting the apk-file onto the device? – aspartame Jan 16 at 11:07
show 1 more comment
feedback

2 Answers

up vote 1 down vote accepted

Two things come to mind:

  1. Make sure you can install from other locations than market. Goto Settings->Applications and check the 'Unknown sources' checkbox.

  2. The installation will fail if you already have the app installed with a different signature. Manually uninstall the app on your phone.

Edit: Also, is the apk signed with a release key? If so, you might want to verify that the signing/package aligning was done correctly.

link|improve this answer
feedback

Check if your phone's internal memory is full.

Either free up some space or edit your AndroidManifest.xml to include the installLocation property

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    android:installLocation="preferExternal"
    ... >

See more here.

link|improve this answer
Thanx ...but my device have 8 GB of free memory – Navdroid Jan 16 at 10:24
feedback

Your Answer

 
or
required, but never shown

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