Re: [android-developers] Re: PACKAGE_ADDED, PACKAGE_REMOVED and PACKAGE_REPLACED...

2013-05-18 Thread 3c
Hello Diana, I need to know when my app is updated, because now on JB it is forced-stopped which prevents services to continue to do what user wants them to do. However I don't want app to be started for every app update taking place! So you suggest to filter on package name, however there is

Re: [android-developers] Re: PACKAGE_ADDED, PACKAGE_REMOVED and PACKAGE_REPLACED...

2010-01-11 Thread Mariano Kamp
*bump* ;-) On Thu, Nov 19, 2009 at 12:19 AM, sdphil wrote: > how do you do that? > > I tried: > > > > > > > > > > > > And a bunch of variations of android:path, but I couldn't get it to > only notify me when it was my app. > > tia. > > On Nov 18, 12:58

[android-developers] Re: PACKAGE_ADDED, PACKAGE_REMOVED and PACKAGE_REPLACED...

2009-12-16 Thread sergey staskov
Hello, could you please advise how to get application info of uninstalled application. I try to use packageManager.getApplicationInfo - it throws exception. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email t

[android-developers] Re: PACKAGE_ADDED, PACKAGE_REMOVED and PACKAGE_REPLACED...

2009-11-25 Thread sdphil
ping... On Nov 18, 3:19 pm, sdphil wrote: > how do you do that? > > I tried: > > >     >         >         >         >         >     > > > And a bunch of variations of android:path, but I couldn't get it to > only notify me when it was my app. > > tia. > > On Nov 18, 12:58 pm, Dianne Hack

[android-developers] Re: PACKAGE_ADDED, PACKAGE_REMOVED and PACKAGE_REPLACED...

2009-11-18 Thread sdphil
how do you do that? I tried: And a bunch of variations of android:path, but I couldn't get it to only notify me when it was my app. tia. On Nov 18, 12:58 pm, Dianne Hackborn wrote: > Please register for only your specific package name, not every

Re: [android-developers] Re: PACKAGE_ADDED, PACKAGE_REMOVED and PACKAGE_REPLACED...

2009-11-18 Thread Dianne Hackborn
Please register for only your specific package name, not every package, so your app doesn't get launched every time another app is installed or uninstalled. On Wed, Nov 18, 2009 at 12:21 PM, sdphil wrote: > oh, okay, so I added this line to my manifest -- > > > > and it seemed to work. I ge

[android-developers] Re: PACKAGE_ADDED, PACKAGE_REMOVED and PACKAGE_REPLACED...

2009-11-18 Thread sdphil
oh, okay, so I added this line to my manifest -- and it seemed to work. I get a removed followed by a replaced. as is documented here: http://developer.android.com/intl/fr/guide/appendix/faq/framework.html now I just gotta figure out how to remove/replace the app widget when i get this..