We have Android app which detects if apps are installed/ uninstalled on device or not. with the help of manifest file which is as below:
<action android:name="android.intent.action.PACKAGE_INSTALL"/>
<action android:name="android.intent.action.PACKAGE_ADDED"/>
<action android:name="android.intent.action.PACKAGE_REMOVED"/>
The android app receives broadcast from internal systems and send it to our servers.
But after API 26 android OS is not giving broadcast for Package_Installed.
Dose anyone know how to detect the app installation after API lever 26.