Reputation: 611
I downloaded my android app onto my phone to test it and when I try to install it the install just stops and says "Application not installed" or something like that. I'm not getting an error or anything so I can't figure out why it is doing this. Any ideas?
Upvotes: 2
Views: 5086
Reputation: 1
I assume you are using your .apk file and NOT trying to buy it on Android Market.
FYI Developers can not buy/download their own apps.
Upvotes: 0
Reputation: 4635
Try to see the error information in the log file. You can do that by:
adb logcat
to see the error you get when installing the application.The problem may come from several places, therefore the best way to know what is happening is by checking the logs.
EDIT: I decided to include the official link of adb
for the ones that are not familiar with it: Android Debug Bridge
Upvotes: 3
Reputation: 3106
I encountered a similar problem when I updated my manifest file.
I could load the program onto the phone, but the clicking its icon on the home screen gave me that error - it was probably uninstalled when I updated the manifest. However clicking the icon in the apps list worked fine.
Perhaps something similar happened in your case?
Upvotes: 0