Reputation: 917
I'm trying to test a test app I developed on android 2.2 sdk on my htc phone with Froyo on it (2.2). In the emulator it works fine, when I export as unsigned app and try to install on the phone, it doesn't allow me, just telling me 'application non installed'. The phone has the settings to accept installation of non android application, so I'm not sure why I can't test on it. Is it because it's not signed?
Any idea?
Thx fellas
Upvotes: 0
Views: 2061
Reputation: 77752
You're mistaking "run non-market apps" with "run unsigned apps". Android apps need to be signed, unless you have a very vile ROM that circumvents this check.
Sign the app, or run it through Eclipse (which auto-signs it with a debug key).
Upvotes: 2