[android-developers] Re: Uninstall built-in app

2009-03-13 Thread sebastian
What if I simply want to uninstall an application that I've installed and I don't remember it's full package name? There is a way to list what files are inside data/app/? On 6 mar, 15:36, Jean-Baptiste Queru j...@android.com wrote: (1) - yes the other app will still receive broadcasts, expose

[android-developers] Re: Uninstall built-in app

2009-03-13 Thread Dianne Hackborn
In the DevTools app there is a Package Browser applet. On Fri, Mar 13, 2009 at 3:05 AM, sebastian sdjua...@gmail.com wrote: What if I simply want to uninstall an application that I've installed and I don't remember it's full package name? There is a way to list what files are inside

[android-developers] Re: Uninstall built-in app

2009-03-13 Thread Dianne Hackborn
Oh also adb shell dumpsys package will tell you more than you probably want to know about the installed packages. On Fri, Mar 13, 2009 at 10:07 AM, Dianne Hackborn hack...@android.comwrote: In the DevTools app there is a Package Browser applet. On Fri, Mar 13, 2009 at 3:05 AM, sebastian

[android-developers] Re: Uninstall built-in app

2009-03-06 Thread Jean-Baptiste Queru
(1) - yes the other app will still receive broadcasts, expose providers, services, etc... The choice only happens for calls to startActivity that hit two or more equivalent activity intent filters. (2) - in settings / manage applications, preferences can be removed. Or by uninstalling your

[android-developers] Re: Uninstall built-in app

2009-03-06 Thread shaddu
Thanks JBQ for clarifying the queries. From the discussion we can conlude that some built-in applications such as call log, incoming call manager, bluetooth file receiption, sms application cannot be provided by third party as download and install applications. If third party app is downloaded

[android-developers] Re: Uninstall built-in app

2009-03-06 Thread Dianne Hackborn
On Thu, Mar 5, 2009 at 9:05 PM, Shadakshari Hiremath shad...@gmail.comwrote: - Will the built in application and my application be informed about whether it is default application or not? and how? No. Also not you are not as a whole being made the default application, a specific activity in

[android-developers] Re: Uninstall built-in app

2009-03-05 Thread Jean-Baptiste Queru
That's not possible. If your application responds to the right intents, the user will be offered a choice when doing an action that can be handled both by the built-in application and by your application. JBQ On Thu, Mar 5, 2009 at 6:12 AM, shaddu shad...@gmail.com wrote: Hello Android, We

[android-developers] Re: Uninstall built-in app

2009-03-05 Thread Ludwig
I do not think you can uninstall system apps (for good reasons). User applications are installed under /data/app or app-private (which is writable), while system apps are under /system/app, which is ro. The way to deal with this is to respond to the same intents: so if you app is actually better

[android-developers] Re: Uninstall built-in app

2009-03-05 Thread Al Sutton
I would suggest you don't even try to uninstall any other applications. Your application should not mess with other applications the user has on their 'phone. You will most likely see a huge user backlash once they discover your app has uninstalled other applications that they chose to put

[android-developers] Re: Uninstall built-in app

2009-03-05 Thread grennis
Wow, this has to be the single worst idea I have ever heard. Are you planning to re-install the default music player if I uninstall your app? Let me guess... your app is so great nobody would ever want to uninstall it... right... On Mar 5, 9:12 am, shaddu shad...@gmail.com wrote: Hello

[android-developers] Re: Uninstall built-in app

2009-03-05 Thread Mads Kristiansen
Do you work for Sony? Might as well throw a rootkit in there along with the app ;) Why do you wan't to ensure your player is the only one on the phone? Maybe there is another solution.. / Mads On Thu, Mar 5, 2009 at 3:12 PM, shaddu shad...@gmail.com wrote: Hello Android, We are plannig to

[android-developers] Re: Uninstall built-in app

2009-03-05 Thread Christine
Great idea! Uninstall the music app to install your own. Then uninstall the mail app and install another one. Uninstall the phone app and install something else entirely. Finally, uninstall Android and install Windows Mobile. Cool! Christine On Thu, Mar 5, 2009 at 3:12 PM, shaddu

[android-developers] Re: Uninstall built-in app

2009-03-05 Thread Lars
The built-in applications are located in /system/app. Since /system is mounted read-only you cannot uninstall them unless you mount this file system read-write and even then I'm not sure if they can be uninstalled with adb uninstall... Also, I don't think you can change to read-write on a real

[android-developers] Re: Uninstall built-in app

2009-03-05 Thread Shadakshari Hiremath
Thanks for all the valuable responses. I wasn't aware of the feature User will be given a choice when doing an action that can be handled both by the built-in application and by your application. So, my approach was to replace built in app. User choice is best approach as user is going to decide