[android-developers] Re: Application not installed!

2012-03-24 Thread Bpn
Solved this..The issue was that the application on the phone in the first case itself was not signed. Once i installed the signed version on the phone and tried updating from that - it worked :) On Mar 24, 4:08 pm, Bpn bi...@lokalty.com wrote: I keep getting Application not installed error

[android-developers] Re: Application not installed

2011-04-20 Thread Sumeet
This can happen when you have an application already installed on the device, and you try installing another app with the same name (but different application signature.) In that case, you will have to uninstall the previous app before installation. On Apr 20, 12:53 am, Kostya Vasilyev

Re: [android-developers] Re: Application not installed

2011-04-20 Thread Nandagopal T
Hi bob, You can find the logcat in the DDMS perspective, check whether you have it in your top right most corner of your eclipse. (or) Window - open perspective - others - DDMS - you can find the log cat in that . Cheers With Regards, Nandagopal T On Wed, Apr 20, 2011 at 12:33 AM, bob

[android-developers] Re: Application not installed

2011-04-19 Thread bob
How do I check the logcat? On Apr 18, 5:05 pm, Kostya Vasilyev kmans...@gmail.com wrote: Bob, Do you see any relevant messages in the logcat when installation fails? 19.04.2011 2:03 пользователь Russell DuRoss r2s...@gmail.com написал: I tried this previously and also couldn't get an

Re: [android-developers] Re: Application not installed

2011-04-19 Thread Mark Murphy
Use adb logcat, DDMS, or the DDMS perspective in Eclipse. On Tue, Apr 19, 2011 at 3:03 PM, bob b...@coolgroups.com wrote: How do I check the logcat? On Apr 18, 5:05 pm, Kostya Vasilyev kmans...@gmail.com wrote: Bob, Do you see any relevant messages in the logcat when installation fails?

Re: [android-developers] Re: Application not installed

2011-04-19 Thread Marcin Orlowski
2011/4/19 Mark Murphy mmur...@commonsware.com Use adb logcat, DDMS, or the DDMS perspective in Eclipse. There're some on-device log readers apps - search market for logcat Regards, Marcin Orlowski *Tray Agenda http://bit.ly/trayagenda* - keep you daily schedule handy... *Date In Tray*

Re: [android-developers] Re: Application not installed

2011-04-19 Thread Kostya Vasilyev
Bob, If you have the phone hooked up to a development system with all the tools, including Java and Android SDK, you could just run adb logcat in a command line window. If not, there is a bunch of apps in Market that can read and display the logcat right on the phone. -- Kostya

[android-developers] Re: Application not installed

2011-04-18 Thread Moose
It seems to me that this occurs when the application you are trying to install has the same package name as a built in package. You either need to uninstall the application already present, or change the name of the package in the app you are trying to install. -- You received this message

[android-developers] Re: Application not installed

2011-04-18 Thread Russell DuRoss
I tried this previously and also couldn't get an apk to install that way - couldn't figure out why. I ended up using dropbox.com to pass files between my development PC and my test device - they install fine when brought down by Dropbox. On Apr 18, 12:31 pm, bob b...@coolgroups.com wrote: I

Re: [android-developers] Re: Application not installed

2011-04-18 Thread Kostya Vasilyev
Bob, Do you see any relevant messages in the logcat when installation fails? 19.04.2011 2:03 пользователь Russell DuRoss r2s...@gmail.com написал: I tried this previously and also couldn't get an apk to install that way - couldn't figure out why. I ended up using dropbox.com to pass files

[android-developers] Re: Application not installed - anyone have thoughts as to why?

2010-05-06 Thread stanlick
I have a similar issue with the Application not installed Unfortunately, I do not have the luxury of removing the application on account of a database. Strangely, after the download, install and prompts to proceed, I get the screen telling me Application not installed and the following message in

[android-developers] Re: Application not installed - anyone have thoughts as to why?

2010-04-14 Thread Edward Falk
If you check your logcat messages, you'll probably get your answer, but I'll tell you here anyway: You're not allowed to replace an application with another that has a conflicting signature. It's an obvious safety feature. So uninstall your old version and then install the new version. -- You

[android-developers] Re: Application not installed - anyone have thoughts as to why?

2010-04-14 Thread DonFrench
Thanks, Mark. Uninstalling first did the trick. On Apr 14, 6:13 pm, Mark Murphy mmur...@commonsware.com wrote: DonFrench wrote: I have successfully installed my (first) app many times to my Nexus One directly from Eclipse   But now I want to distribute it to some testers.  So I exported

[android-developers] Re: Application not installed - anyone have thoughts as to why?

2010-04-14 Thread DonFrench
Thanks, I figured that out from Mark's answer but what did you see in the logcat message that you thought would tip me off? On Apr 14, 8:02 pm, Edward Falk ed.f...@gmail.com wrote: If you check your logcat messages, you'll probably get your answer, but I'll tell you here anyway: You're not

[android-developers] Re: Application not installed on Hero

2010-03-30 Thread kanatacrude
I'm interested in this. Please update this thread if you find anything. On Mar 26, 7:26 pm, Jim Blackler jimblack...@gmail.com wrote: Run adb logcat, attempt to install the app and examine the log carefully. I'd wager the error is in there somewhere. Jim On 26 March 2010 09:23, John