Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Im currently working on a android application.. I have to log the new installed app name whenever user is installing/downloading new third party app. How can i get the notification if user is installing new app. Thanks in advance

Java File

public class ApplicationBroadcastService extends BroadcastReceiver {

  public void onReceive(Context context, Intent intent) {
        System.out.print("-------");
  }

}

Mainfest

    <receiver android:name=".applicationlog.ApplicationBroadcastService">
        <intent-filter>
            <action android:name="android.intent.action.PACKAGE_ADDED"  />
            <action android:name="android.intent.action.PACKAGE_CHANGED" />
            <action android:name="android.intent.action.PACKAGE_INSTALL" />
            <action android:name="android.intent.action.PACKAGE_REMOVED" />
            <action android:name="android.intent.action.PACKAGE_REPLACED" />
        </intent-filter>
     </receiver>

but still i am not get in the onReceive method. when i am installing/uninstalling any app.

Here is the solution:

i done small change in my Manifest file.

    <intent-filter>
            <category android:name="android.intent.category.DEFAULT" />
            <action android:name="android.intent.action.PACKAGE_ADDED"  />
            <action android:name="android.intent.action.PACKAGE_CHANGED" />
            <action android:name="android.intent.action.PACKAGE_INSTALL" />
            <action android:name="android.intent.action.PACKAGE_REMOVED" />
            <action android:name="android.intent.action.PACKAGE_REPLACED" />
            <data android:scheme="package" />
        </intent-filter>

now it's working fine.. :) Thanks again @willytate

share|improve this question

3 Answers

up vote 4 down vote accepted

Ajay,

You will need to setup a BroadcastReceiver with an intent filter to receive the following Action: ACTION_PACKAGE_ADDED then from the onReceive() method of the BroadcastReceiver you can launch a Notification.

share|improve this answer
Thanks @willytate. Perfect help. – Ajay Singh Mar 31 '11 at 11:45
1  
@willylate, Please see my code. i am still not get into onReceive method. correct me if i have done something wrong. – Ajay Singh Mar 31 '11 at 12:32
well, i know to receive PACKAGE_REMOVED you need the permission BROADCAST_PACKAGE_REMOVED. Try just setting the receiver line to <receiver android:name=".ApplicationBroadcastService"> that usually works fo rme. – William Tate Mar 31 '11 at 12:44
How could i get the name or the info about the last installed app... Thanks – Vervatovskis May 4 '12 at 8:50
You could try using the EXTRA_UID value that is passed in with the data during this intent. It should give you the ID value of the last app installed. Use this information to retrieve more information about the app from PackageManager. This is just an educated guess though... – William Tate May 4 '12 at 14:07

Take a look at the intent documentation. You are looking for ACTION_PACKAGE_INSTALL and ACTION_PACKAGE_REMOVED.

share|improve this answer
Thanks, can i get some sample code? – Ajay Singh Mar 31 '11 at 11:32
2  
nope, try to implement what willytate mentioned. Nobody will write code for you. If you stuck, ask a new question (and don't ask for code there, present what you have...) – WarrenFaith Mar 31 '11 at 11:37
Thanks @WarrenFaith, your answer was not very clear to me.that's why i ask for some clue. anyway thanks for your response. – Ajay Singh Mar 31 '11 at 11:48

You can listen for the android.intent.action.PACKAGE_ADDED intent.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.