Is it possible to detect Android application uninstall? [duplicate]

时光总嘲笑我的痴心妄想 提交于 2019-11-29 18:26:15

No dear you cant check that your application is going to uninstall.

When the user uninstalls the app, at first the process is killed, then your apk file and data directory are deleted, along with the records in Package Manager that tell other apps which intent filters you've registered for.

But you can create your folder in your cache dir so that when your application will be deleted all folders and files automatically will be deleted.

Please check it. http://developer.android.com/guide/topics/data/data-storage.html

So there's no way for your application to know that it is being uninstalled (without modifying the kernel). All files created in the data/data/your.app.package is deleted automatically upon uninstall.

Another approach could be to have another application that checks whether this application is installed or not. If not, it can do the clean-up work.

like this

You can't detect for your app whether it has installed or uninstalled but for other apps you can get this detail using this BroadcastReceiver.

<receiver android:name=".UninstallApkReceiver">
    <intent-filter>
        <action android:name="android.intent.action.PACKAGE_REMOVED"/>
    </intent-filter>
</receiver>

YES using Accessibility Service you can detect Uninstall event and then read rhe screen to find app name. Voodo app uses this concept.

Yes you can create a broadcast receiver for package add/remove and start a service from it.

register your broadcast in manifest file as like this

    <receiver android:name=".YourReceiver">
    <intent-filter>
        <action android:name="android.intent.action.PACKAGE_INSTALL" />
        <action android:name="android.intent.action.PACKAGE_ADDED" />
        <data android:scheme="package"/>
    </intent-filter>
   </receiver> 

or you can register it via java code

 IntentFilter intentFilter = new IntentFilter();
 intentFilter.addAction(Intent.ACTION_PACKAGE_ADDED);
  intentFilter.addAction(Intent.ACTION_PACKAGE_INSTALL);
  intentFilter.addDataScheme("package");
 registerReceiver(br, intentFilter);

hope this answer is helpful to you friend :)

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!