Reputation: 4533
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?
Upvotes: 0
Views: 4113
Reputation: 4662
Two things come to mind:
Make sure you can install from other locations than market. Goto Settings->Applications and check the 'Unknown sources' checkbox.
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.
Upvotes: 1
Reputation: 3241
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.
Upvotes: 0