Hey,

I need to listen to the above mentioned actions/events. I am actually only
interested in two packages. Now with the current declaration in my manifest
my app's process is started every time any app is installed or replaced:

<receiver
android:name="com.newsrob.PackageChangedReceiver">
<intent-filter>
<action
android:name="android.intent.action.PACKAGE_REPLACED" />
<action
android:name="android.intent.action.PACKAGE_ADDED" />
<data
android:scheme="package" />
</intent-filter>
</receiver>

I currently do the filtering in my code, but is there a way to do this
declaratively too?

Cheers,
Mariano

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to