android - How to detect that new app has been installed on the device? -


how cleanmaster app detect new app has been installed on device? whenever install new app, popup asking if want move app sd card.

i trying code similar behaviour cannot find way it.

there action_package_added broadcast intent, application being installed doesn't receive this.

<receiver android:name=".myreceiver">     <intent-filter>         <action android:name="android.intent.action.package_added" />         <data android:scheme="package" />     </intent-filter> </receiver> 

Comments

Popular posts from this blog

rest - Spring boot: Request method 'PUT' not supported -

java - WrongTypeOfReturnValue exception thrown when unit testing using mockito -

symfony - imagine_filter() not generating the correct url in LiipImagineBundle -